Skip to content

Commit

Permalink
Merge pull request #27 from maykinmedia/feature/50-fix-outdated-setup…
Browse files Browse the repository at this point in the history
…tools-issue

🐛 [#50] moved setuptools installation in dockerfile
  • Loading branch information
bart-maykin authored Aug 28, 2024
2 parents 012659a + f4112d2 commit 667a65c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,9 @@ WORKDIR /app
RUN mkdir /app/src

# Ensure we use the latest version of pip
RUN pip install pip "setuptools>=70.0.0" -U
COPY ./requirements /app/requirements
RUN pip install -r requirements/production.txt

RUN pip install pip "setuptools>=70.0.0"

# Stage 2 - Install frontend deps and build assets
FROM node:20-bookworm-slim AS frontend-build
Expand Down

0 comments on commit 667a65c

Please sign in to comment.