Stackedit/Dockerfile

17 lines
307 B
Docker
Raw Normal View History

FROM benweet/stackedit-base
RUN mkdir -p /opt/stackedit
2018-01-18 19:54:54 +00:00
WORKDIR /opt/stackedit
2018-01-19 23:32:14 +00:00
COPY package*json /opt/stackedit/
2018-01-18 19:54:54 +00:00
COPY gulpfile.js /opt/stackedit/
2018-01-20 11:24:43 +00:00
RUN npm install --unsafe-perm \
2018-01-19 22:56:11 +00:00
&& npm cache clean --force
2018-01-18 19:54:54 +00:00
COPY . /opt/stackedit
ENV NODE_ENV production
2018-01-19 22:56:11 +00:00
RUN npm run build
EXPOSE 8080
CMD [ "node", "." ]