eth-state-metrics/Dockerfile

21 lines
273 B
Docker
Raw Normal View History

2020-12-04 17:00:13 +00:00
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