Repository URL to install this package:
|
Version:
1.0.9 ▾
|
FROM node:8-alpine
WORKDIR /usr/src/app
COPY . .
RUN npm install --production
EXPOSE 3000
CMD [ "npm", "start" ]