Skip to content

Commit

Permalink
Add dockerfile for server
Browse files Browse the repository at this point in the history
  • Loading branch information
datagutten committed Jul 7, 2024
1 parent b960fd9 commit 9dd6868
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions server/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM node:18-bookworm-slim
EXPOSE 8765
WORKDIR /server

COPY server.js .
RUN npm install ws colors moment

ENTRYPOINT ["node", "server.js"]

0 comments on commit 9dd6868

Please sign in to comment.