We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5040480 commit 966c6f2Copy full SHA for 966c6f2
1 file changed
Dockerfile
@@ -4,12 +4,12 @@ RUN apt-get update && apt-get install -y npm
4
WORKDIR /app
5
6
COPY ./package*.json .
7
-RUN node --max-old-space-size=1000 $(which npm) i
+
8
+RUN node $(which npm) i
9
10
COPY . .
-RUN node --max-old-space-size=1000 $(which npm) run build
11
+RUN node $(which npm) run build
12
-EXPOSE 443
13
+EXPOSE 80
14
15
ENTRYPOINT [ "npm", "run", "start" ]
-
0 commit comments