Skip to content

Commit

Permalink
⬆️ [#2321] Upgrade node to 18 and pip to >=24.0 in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenbal committed Apr 18, 2024
1 parent 24c97a2 commit cc83cc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ WORKDIR /app
RUN mkdir /app/src

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


# Stage 2 - Install frontend deps and build assets
FROM node:13-buster AS frontend-build
FROM node:18-buster AS frontend-build

RUN apt-get update && apt-get install -y --no-install-recommends \
git \
Expand Down

0 comments on commit cc83cc9

Please sign in to comment.