Pushing working sources + working dockerfile

This commit is contained in:
Corentin Closs
2019-12-02 18:31:20 +01:00
parent 7f6be20696
commit 38e8ba1dbe
4 changed files with 529 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM alpine
RUN apk add --update nodejs npm
ADD . .
RUN npm install
CMD ["node", "index.js"]
EXPOSE 9591