Skip to content

Commit 3a05478

Browse files
committed
feat: add a placeholder Dockerfile
1 parent 26f66c3 commit 3a05478

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

packages/server/Dockerfile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM node:23.1.0
2+
WORKDIR /usr/src/app
3+
4+
COPY package.json package.json
5+
COPY yarn.lock yarn.lock
6+
RUN yarn install --production --frozen-lockfile
7+
8+
EXPOSE 2024
9+
10+
CMD ["yarn", "start"]

0 commit comments

Comments
 (0)