scratch-www/Dockerfile
Colby Gutierrez-Kraybill 5b1891efdb node:8 is current
2018-03-27 14:11:24 -04:00

10 lines
134 B
Docker

FROM node:8
RUN mkdir -p /var/app/current
WORKDIR /var/app/current
COPY . ./
RUN rm -rf ./node_modules
RUN npm install
EXPOSE 8333