diff --git a/packages/api-gateway/Dockerfile b/packages/api-gateway/Dockerfile index 41792bbb0..64bd2eec0 100644 --- a/packages/api-gateway/Dockerfile +++ b/packages/api-gateway/Dockerfile @@ -1,7 +1,7 @@ FROM node:16.15.1-alpine AS builder # Install dependencies for building native libraries -RUN apk add --update git openssh-client curl python3 alpine-sdk +RUN apk add --update git openssh-client python3 alpine-sdk WORKDIR /workspace @@ -12,6 +12,8 @@ RUN yarn install --immutable FROM node:16.15.1-alpine +RUN apk add --update curl + WORKDIR /workspace # Copy the installed dependencies from the previous stage. diff --git a/packages/auth/Dockerfile b/packages/auth/Dockerfile index 88e0c9ed7..c96145aed 100644 --- a/packages/auth/Dockerfile +++ b/packages/auth/Dockerfile @@ -1,7 +1,7 @@ FROM node:16.15.1-alpine AS builder # Install dependencies for building native libraries -RUN apk add --update git openssh-client curl python3 alpine-sdk +RUN apk add --update git openssh-client python3 alpine-sdk WORKDIR /workspace @@ -12,6 +12,8 @@ RUN yarn install --immutable FROM node:16.15.1-alpine +RUN apk add --update curl + WORKDIR /workspace # Copy the installed dependencies from the previous stage. diff --git a/packages/files/Dockerfile b/packages/files/Dockerfile index 48a0b5c7b..343cd28cc 100644 --- a/packages/files/Dockerfile +++ b/packages/files/Dockerfile @@ -1,7 +1,7 @@ FROM node:16.15.1-alpine AS builder # Install dependencies for building native libraries -RUN apk add --update git openssh-client curl python3 alpine-sdk +RUN apk add --update git openssh-client python3 alpine-sdk WORKDIR /workspace @@ -12,6 +12,8 @@ RUN yarn install --immutable FROM node:16.15.1-alpine +RUN apk add --update curl + WORKDIR /workspace # Copy the installed dependencies from the previous stage. diff --git a/packages/scheduler/Dockerfile b/packages/scheduler/Dockerfile index c971a4108..27ab27031 100644 --- a/packages/scheduler/Dockerfile +++ b/packages/scheduler/Dockerfile @@ -1,7 +1,7 @@ FROM node:16.15.1-alpine AS builder # Install dependencies for building native libraries -RUN apk add --update git openssh-client curl python3 alpine-sdk +RUN apk add --update git openssh-client python3 alpine-sdk WORKDIR /workspace @@ -12,6 +12,8 @@ RUN yarn install --immutable FROM node:16.15.1-alpine +RUN apk add --update curl + WORKDIR /workspace # Copy the installed dependencies from the previous stage. diff --git a/packages/syncing-server/Dockerfile b/packages/syncing-server/Dockerfile index 4e8b23734..54a786854 100644 --- a/packages/syncing-server/Dockerfile +++ b/packages/syncing-server/Dockerfile @@ -1,7 +1,7 @@ FROM node:16.15.1-alpine AS builder # Install dependencies for building native libraries -RUN apk add --update git openssh-client curl python3 alpine-sdk +RUN apk add --update git openssh-client python3 alpine-sdk WORKDIR /workspace @@ -12,6 +12,8 @@ RUN yarn install --immutable FROM node:16.15.1-alpine +RUN apk add --update curl + WORKDIR /workspace # Copy the installed dependencies from the previous stage.