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