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

Merge pull request #5 from fosscord/Docker

Dockerization
This commit is contained in:
Diego Magdaleno 2021-07-20 16:05:53 -05:00 committed by GitHub
commit 320fef002e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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/"]