Skip to content

Commit

Permalink
fix: pip upgrade breaks things
Browse files Browse the repository at this point in the history
  • Loading branch information
biodrone committed Mar 1, 2023
1 parent b42a27b commit 40cd5d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile.server
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN python3 -m venv $VIRTUAL_ENV
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
COPY . .
RUN apt update && apt install -y build-essential
RUN pip install --upgrade pip
# RUN pip install --upgrade pip
RUN pip install poetry==1.4.0
RUN poetry export --without-hashes -o requirements.txt
RUN pip install -r requirements.txt
Expand Down

0 comments on commit 40cd5d3

Please sign in to comment.