Skip to content

Commit 966c6f2

Browse files
ARC-036: use port 80 on AWS (#6)
Co-authored-by: israel.aristide <israel.aristide@plusgrade.com>
1 parent 5040480 commit 966c6f2

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ RUN apt-get update && apt-get install -y npm
44
WORKDIR /app
55

66
COPY ./package*.json .
7-
RUN node --max-old-space-size=1000 $(which npm) i
7+
8+
RUN node $(which npm) i
89

910
COPY . .
10-
RUN node --max-old-space-size=1000 $(which npm) run build
11+
RUN node $(which npm) run build
1112

12-
EXPOSE 443
13+
EXPOSE 80
1314

1415
ENTRYPOINT [ "npm", "run", "start" ]
15-

0 commit comments

Comments
 (0)