eth-state-metrics/Dockerfile
2020-12-04 20:00:13 +03:00

21 lines
273 B
Docker

FROM node:10.15.2-alpine
# Create app directory
WORKDIR /app
RUN apk add --no-cache \
make g++ git ca-certificates
#RUN npm config set unsafe-perm true && npm install -g typescript ts-node
COPY package*.json ./
RUN yarn
COPY . .
#RUN npm run build
EXPOSE 3000