Skip to content

Commit

Permalink
Update Dockerfile.dev
Browse files Browse the repository at this point in the history
  • Loading branch information
akshatsoni64 committed Feb 10, 2021
1 parent 4dfaf89 commit e6f4987
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile.dev
Expand Up @@ -13,7 +13,8 @@ RUN python3 -m venv $VIRTUAL_ENV
WORKDIR /tmp
COPY requirements.txt /tmp
COPY test-requirements.txt /tmp
RUN python -m pip install -U pip && pip install -r requirements.txt -r test-requirements.txt
RUN python -m pip install -U pip
RUN pip install -r requirements.txt -r test-requirements.txt

FROM base as run
COPY --from=build $VIRTUAL_ENV $VIRTUAL_ENV
Expand Down

0 comments on commit e6f4987

Please sign in to comment.