Files
pezkuwi-telemetry/Dockerfile
T
2019-08-07 14:29:31 +02:00

18 lines
343 B
Docker

FROM node:10-alpine
WORKDIR /app
RUN apk add --no-cache python make g++
COPY ./scripts ./scripts
COPY ./backend ./backend
COPY ./packages ./packages
COPY ./package.json ./yarn.lock ./tsconfig.json ./
RUN yarn
# Frontend is exposing 3000
# Backend is exposing 8080
# No need for expose, if using docker-compose & docker run -p 3000:3000