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

8 lines
193 B
Docker
Raw Normal View History

FROM alpine
RUN apk add --update nodejs npm
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
CMD [ "npm", "run", "start:bundle" ]