Skip to content

Commit

Permalink
refactor: remove requirements.txt after installing packages
Browse files Browse the repository at this point in the history
Co-authored-by: Antonis Kalipetis <akalipetis@withlogic.co>
  • Loading branch information
gmargaritis and akalipetis authored Sep 27, 2024
1 parent 4c13db1 commit 83954d9
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 @@ -8,7 +8,7 @@ ENV PYTHONUNBUFFERED=1
COPY ./requirements.txt ./

RUN python -m ensurepip
RUN pip install -r requirements.txt
RUN pip install -r requirements.txt && rm requirements.txt

ARG POETRY_VERSION=1.8.3
ENV POETRY_HOME=/opt/poetry\
Expand Down

0 comments on commit 83954d9

Please sign in to comment.