1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00
commons/server/Dockerfile

13 lines
191 B
Docker
Raw Normal View History

2019-04-04 11:30:31 +02:00
FROM node:11-alpine
LABEL maintainer="Ocean Protocol <devops@oceanprotocol.com>"
WORKDIR /app/backend/
COPY . .
2019-04-12 16:26:13 +02:00
RUN npm install && \
npm run build
2019-04-04 11:30:31 +02:00
2019-04-12 16:26:13 +02:00
ENTRYPOINT ["npm", "run", "serve"]