mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-04-22 20:48:05 +00:00
b665555de6
* 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>
12 lines
189 B
Docker
12 lines
189 B
Docker
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
|