We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 332b28c commit 676aac7Copy full SHA for 676aac7
1 file changed
Dockerfile
@@ -1,7 +1,9 @@
1
FROM node:18.7-alpine AS build
2
+
3
WORKDIR /usr/src/app
4
COPY package.json package-lock.json ./
-RUN npm install
5
+RUN apk add --upgrade python3 build-base \
6
+ && npm install
7
COPY . .
8
RUN npm run build
9
0 commit comments