1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-07 19:32:34 +01:00

[Add] Add working Dockerfile

This commit is contained in:
Diego Magdaleno 2021-07-20 16:05:12 -05:00
parent 1754557af4
commit 295202de90

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM node:lts-alpine
WORKDIR /usr/src/fosscord-cdn
COPY package.json .
RUN npm install
COPY . .
EXPOSE 3003
CMD ["node", "dist/"]