mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-05 10:22:31 +01:00
✨ added Dockerfile for bundle
This commit is contained in:
parent
e261380304
commit
d747b202c8
2
.dockerignore
Normal file
2
.dockerignore
Normal file
@ -0,0 +1,2 @@
|
||||
node_modules/
|
||||
db/
|
7
Dockerfile
Normal file
7
Dockerfile
Normal file
@ -0,0 +1,7 @@
|
||||
FROM node:16.10.0
|
||||
WORKDIR /usr/src/fosscord-server/
|
||||
COPY . .
|
||||
WORKDIR /usr/src/fosscord-server/bundle
|
||||
RUN npm run setup
|
||||
EXPOSE 3001
|
||||
CMD [ "npm", "run", "start:bundle" ]
|
Loading…
Reference in New Issue
Block a user