unboundedpress/Dockerfile

11 lines
162 B
Docker
Raw Permalink Normal View History

2019-07-23 06:28:47 +02:00
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