We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ea275af + e0679d4 commit ffc5ecbCopy full SHA for ffc5ecb
1 file changed
Dockerfile
@@ -6,6 +6,10 @@ WORKDIR /app
6
ADD . /app/
7
EXPOSE 4000
8
9
+# Ensure Python and other build tools are available
10
+# These are needed to install some node modules, especially on linux/arm64
11
+RUN apk add --update python3 make g++ && rm -rf /var/cache/apk/*
12
+
13
# We run yarn install with an increased network timeout (5min) to avoid "ESOCKETTIMEDOUT" errors from hub.docker.com
14
# See, for example https://github.com/yarnpkg/yarn/issues/5540
15
RUN yarn install --network-timeout 300000
0 commit comments