Skip to content

Commit

Permalink
Build base image fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kirmorozov committed Apr 1, 2024
1 parent bd995eb commit 788f1c4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build/base.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# start by pulling the python image
FROM python:3.12

# copy the requirements file into the image
COPY ./requirements.txt /app/requirements.txt

# install the dependencies and packages in the requirements file
RUN pip install -r ./requirements.txt
RUN pip install -r requirements.txt

0 comments on commit 788f1c4

Please sign in to comment.