scratch-www/Dockerfile

11 lines
134 B
Text
Raw Normal View History

2018-03-27 14:11:24 -04:00
FROM node:8
RUN mkdir -p /var/app/current
WORKDIR /var/app/current
COPY . ./
RUN rm -rf ./node_modules
RUN npm install
EXPOSE 8333