Skip to content

Commit 37579a2

Browse files
committed
feat: add logger
1 parent 950d107 commit 37579a2

File tree

4 files changed

+733
-8
lines changed

4 files changed

+733
-8
lines changed

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
FROM node:16 AS builder
2+
3+
ENV NODE_ENV production
24
WORKDIR /app
35
COPY ./package.json ./
46
RUN npm install
@@ -7,6 +9,7 @@ RUN npm run build
79

810

911
FROM node:16-alpine
12+
1013
WORKDIR /app
1114
COPY --from=builder /app ./
1215
CMD ["npm", "run", "start:prod"]

0 commit comments

Comments
 (0)