mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-04-25 03:37:58 +00:00
12 lines
208 B
Docker
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
|