summary refs log tree commit diff
path: root/Dockerfile
blob: d4b423eee8fb9ab6b039ddb54f52c06fe083ddb7 (plain) (blame)
1
2
3
4
5
6
7
FROM node:14
WORKDIR /usr/src/fosscord-server/
COPY . .
WORKDIR /usr/src/fosscord-server/bundle
RUN npm run setup
EXPOSE 3001
CMD [ "npm", "run", "start:bundle" ]