Skip to content

Commit

Permalink
Add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
CannonLock committed Nov 7, 2023
1 parent 29a90c2 commit f98c485
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM node:20 AS build

ENV NODE_ENV=production

WORKDIR /usr/src/app
COPY . ./

RUN yarn cache clean
RUN yarn add

CMD ["sh", "server/server.sh"]

0 comments on commit f98c485

Please sign in to comment.