Skip to content

Commit 2ff3a50

Browse files
authored
Merge pull request #30 from not-empty/Version-3
Version 3
2 parents 9f3797f + 563d090 commit 2ff3a50

File tree

123 files changed

+7719
-9070
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+7719
-9070
lines changed

backend/ops/docker/prod/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
FROM node:16.20.2 as build
1+
FROM node:20.10.0 as build
22
WORKDIR /app
33
COPY ./package.json .
44
COPY ./package-lock.json .
55
RUN npm ci
66
COPY . .
77
RUN npm run build
88

9-
FROM node:16.20.2
9+
FROM node:20.10.0
1010
WORKDIR /app
1111
COPY --from=build ./app/node_modules ./node_modules
12-
COPY --from=build ./app/build ./build
12+
COPY --from=build ./app/build ./
1313
COPY --from=build ./app/package.json .
14-
COPY --from=build ./app/.env .
14+
COPY ./.env .
1515
EXPOSE 3333
16-
CMD ["npm","start"]
16+
CMD ["npm", "start"]

0 commit comments

Comments
 (0)