mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
14 lines
187 B
Docker
14 lines
187 B
Docker
FROM node:11-alpine
|
|
LABEL maintainer="Ocean Protocol <devops@oceanprotocol.com>"
|
|
|
|
WORKDIR /app/backend/
|
|
|
|
COPY . .
|
|
|
|
RUN npm install
|
|
|
|
RUN npm run build
|
|
|
|
ENTRYPOINT ["npm", "run", "start"]
|
|
|