1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-11 13:14:06 +01:00

Merge pull request #473 from xaronnn/master

Fix requirements with python
This commit is contained in:
Samuel 2021-10-17 11:57:20 +02:00 committed by GitHub
commit 9e6e166a7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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