-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b57d7eb
commit 070254d
Showing
1 changed file
with
4 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
# Get the python 3.10 base docker image | ||
FROM python:3.10-slim as test-env | ||
|
||
RUN echo "\n Run Dockerfile" | ||
|
||
COPY Makefile . | ||
COPY ./requirements/*.txt ./requirements | ||
COPY ./requirements/*.txt . | ||
|
||
# Install pipenv | ||
RUN apt-get -y update &&\ | ||
apt-get -y install build-essential &&\ | ||
make install &&\ | ||
make install-test | ||
RUN RUN echo $(ls -1) &&\ | ||
python -m pip install -r ./requirements/requirements.txt &&\ | ||
python -m pip install -r ./requirements/requirements-test.txt |