summary refs log tree commit diff
path: root/Dockerfile
diff options
context:
space:
mode:
authorPaul Munteanu <49862892+luth31@users.noreply.github.com>2021-05-28 03:36:40 +0300
committerPaul Munteanu <49862892+luth31@users.noreply.github.com>2021-05-28 03:36:40 +0300
commitdd24e49be15a9ad36c352f1cbf0f77b72a4297f8 (patch)
treefc8b8ce4c08a3defe933425ae9b0b0ad83ed4d27 /Dockerfile
parentFix compilation with strictNullChecks: true (diff)
parentMerge pull request #70 from 9qz/master (diff)
downloadserver-ts-dd24e49be15a9ad36c352f1cbf0f77b72a4297f8.tar.xz
Merge branch 'fosscord:master' into master
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile

index ade7c416..b2329233 100644 --- a/Dockerfile +++ b/Dockerfile
@@ -1,11 +1,12 @@ FROM node:lts-alpine WORKDIR /usr/src/fosscord-gateway -COPY . . +COPY package.json . RUN apk --no-cache --virtual build-dependencies add \ python \ make \ g++ RUN npm install RUN apk del build-dependencies +COPY . . EXPOSE 3002 CMD ["npm", "start"] \ No newline at end of file