Files
pezkuwi-telemetry/frontend.Dockerfile
T
2020-03-30 10:59:26 +02:00

12 lines
208 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 && yarn cache clean