mirror of
https://github.com/status-im/status-tutorials.git
synced 2026-08-27 18:21:07 +00:00
14 lines
167 B
Docker
14 lines
167 B
Docker
FROM node:10-alpine
|
|
|
|
WORKDIR /opt/app
|
|
|
|
ENV NODE_ENV production
|
|
|
|
COPY package*.json ./
|
|
|
|
COPY . /opt/app
|
|
|
|
RUN npm install --dev && npm run build
|
|
|
|
CMD [ "npm", "start" ]
|