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

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