Skip to content

Commit e13e8ef

Browse files
committed
Docker fixes
1 parent 51e94ea commit e13e8ef

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

frontend/landing/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
FROM node:10
2-
RUN mkdir -p /app
3-
COPY . /app
4-
WORKDIR /app
2+
RUN mkdir -p /user/src/app
3+
WORKDIR /user/src/app
4+
COPY ./package*.json ./
55
RUN npm install --quiet
6-
RUN npm run setup
6+
COPY . ./
77
RUN npm run build:prod
88
EXPOSE 3000
99
ENTRYPOINT ["node", "build/index.js"]

0 commit comments

Comments
 (0)