1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-21 02:01:33 +02:00
server/Dockerfile

8 lines
163 B
Docker
Raw Normal View History

2021-10-23 20:04:58 +02:00
FROM node:14
2021-10-08 20:13:19 +02:00
WORKDIR /usr/src/fosscord-server/
COPY . .
WORKDIR /usr/src/fosscord-server/bundle
RUN npm run setup
EXPOSE 3001
2021-10-17 02:45:39 +02:00
CMD [ "npm", "run", "start:bundle" ]