1
0
mirror of https://github.com/fspc/workstand.git synced 2025-02-23 01:13:22 -05:00

Specifically add files so they can be cached by Docker.

This commit is contained in:
Drew Larson 2017-01-21 08:38:04 -06:00
parent 412b4b1dd3
commit 05a2f7f316

View File

@ -1,9 +1,9 @@
FROM node:7.3.0
RUN mkdir /code
WORKDIR /code
ADD ./bikeshop_project /code
ADD ./bikeshop_project/package.json package.json
RUN npm install
RUN npm install -g bower
COPY ./bower.json .
ADD ./bikeshop_project/bower.json bower.json
RUN bower install --allow-root
EXPOSE 3000:3000