Skip to content

Commit

Permalink
Using pip instead of pip3
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwitte committed Jul 17, 2024
1 parent b107d76 commit 87e99d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ WORKDIR /home/app

# Copy the python requirements list to /home/app and install them
COPY requirements.txt .
RUN python3 -m pip3 install -r requirements.txt \
RUN python3 -m pip install -r requirements.txt \
&& rm requirements.txt


Expand Down

0 comments on commit 87e99d4

Please sign in to comment.