From 3de9a61c05d99529df44fdb77e9e5ee9e8a5da0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?U=C4=9Fur?= Date: Sun, 17 Oct 2021 03:45:39 +0300 Subject: [PATCH] Fix requirements with python --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4eed2f40..c0f3ab20 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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" ] \ No newline at end of file +CMD [ "npm", "run", "start:bundle" ]