Skip to content

Commit

Permalink
feat: add a placeholder Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
naftis committed Nov 4, 2024
1 parent 26f66c3 commit 3a05478
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/server/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM node:23.1.0
WORKDIR /usr/src/app

COPY package.json package.json
COPY yarn.lock yarn.lock
RUN yarn install --production --frozen-lockfile

EXPOSE 2024

CMD ["yarn", "start"]

0 comments on commit 3a05478

Please sign in to comment.