Add server, Dockerfile, package.json: Dockerfile
This commit is contained in:
parent
f5e79448d8
commit
1cf66699cf
1 changed files with 8 additions and 0 deletions
8
Dockerfile
Normal file
8
Dockerfile
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
FROM node:22-slim
|
||||
WORKDIR /app
|
||||
COPY package.json .
|
||||
RUN npm install
|
||||
COPY server.js .
|
||||
COPY public/ public/
|
||||
EXPOSE 3233
|
||||
CMD ["node", "server.js"]
|
||||
Loading…
Reference in a new issue