Skip to content

Commit

Permalink
update RUN cmd in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonBlanke committed Mar 17, 2024
1 parent 6b43e59 commit 28a03ab
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@
FROM python:3.10-slim
RUN echo "\n Run Dockerfile"

COPY requirements/requirements.in requirements/requirements-test.in Makefile ./
COPY requirements/ Makefile ./

# Install pipenv
RUN make requirement &&\
python -m pip install -r requirements.txt -r requirements-test.txt
RUN apt-get -y update &&\
apt-get -y install build-essential &&\
python -m pip install pip-tools &&\
make requirement &&\
make install &&\
make install-test

0 comments on commit 28a03ab

Please sign in to comment.