Skip to content
This repository has been archived by the owner on Jan 19, 2020. It is now read-only.

Commit

Permalink
Merge pull request #24 from vansika/docker
Browse files Browse the repository at this point in the history
Docker
  • Loading branch information
mayhem committed Apr 8, 2019
2 parents f136836 + b5d0ce6 commit a1d3a37
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile.master
Expand Up @@ -15,6 +15,8 @@ RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 10

RUN mkdir /rec
WORKDIR /rec
COPY requirements.txt /rec/requirements.txt
RUN pip3 install -r requirements.txt
COPY . /rec

RUN cd /usr/local && \
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile.worker
Expand Up @@ -20,6 +20,8 @@ RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 10

RUN mkdir /rec
WORKDIR /rec
COPY requirements.txt /rec/requirements.txt
RUN pip3 install -r requirements.txt
COPY . /rec

RUN cd /usr/local && \
Expand Down

0 comments on commit a1d3a37

Please sign in to comment.