scratch-www/Dockerfile
Colby Gutierrez-Kraybill 70468321c5 Docker files
Completes first pass at dockerization
2018-03-23 15:50:01 -04:00

10 lines
134 B
Docker

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