ipld-eth-server/postgraphile/Dockerfile
2019-02-11 11:27:27 +01:00

10 lines
241 B
Docker

FROM mhart/alpine-node:10
RUN apk --update --no-cache add make g++ python findutils postgresql-dev
WORKDIR /app
COPY . /app
run yarn install
RUN ["./node_modules/typescript/bin/tsc"]
EXPOSE 3000
CMD ["node", "/app/build/dist/src/index.js"]