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