Install curl and update-ca-certificates in container

closes #5277
This commit is contained in:
Tom Moor
2023-05-15 23:04:38 -04:00
parent b2ab3b010d
commit fd700e6fd6
2 changed files with 2 additions and 2 deletions

View File

@@ -7,6 +7,8 @@ WORKDIR $APP_PATH
# ---
FROM node:18-alpine AS runner
RUN apk update && apk add --no-cache curl && apk add --no-cache ca-certificates
LABEL org.opencontainers.image.source="https://github.com/outline/outline"
ARG APP_PATH

View File

@@ -1,8 +1,6 @@
ARG APP_PATH=/opt/outline
FROM node:18-alpine AS deps
RUN apk --no-cache add curl
ARG APP_PATH
WORKDIR $APP_PATH
COPY ./package.json ./yarn.lock ./