unboundedpress/Dockerfile
2019-07-23 04:28:47 +00:00

11 lines
162 B
Docker

FROM node:8.11.4-alpine
RUN mkdir -p /usr/src/unboundedpress
WORKDIR /usr/src/unboundedpress
COPY package.json ./
RUN npm install
EXPOSE 3000
CMD node bin/www