working backend on docker (#226)

* working backend on docker

refactor of the dockerfiles to be more readable and independent.
full build of the backend (release only) within docker

* read `PORT` to u16

* Only need one `PORT` in the new backend

Co-authored-by: Maciej Hirsz <1096222+maciejhirsz@users.noreply.github.com>
This commit is contained in:
Daniel Maricic
2020-02-07 18:27:25 +01:00
committed by GitHub
parent 0a6cd08747
commit b665555de6
4 changed files with 20 additions and 16 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM node:10-alpine
WORKDIR /app
RUN apk add --no-cache python make g++
COPY ./scripts ./scripts
COPY ./packages ./packages
COPY ./package.json ./yarn.lock ./tsconfig.json ./
RUN yarn