Skip to content

Commit

Permalink
Merge branch 'main' into docker_parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleZijlstra committed Nov 19, 2023
2 parents b4dbc4a + 96faa3b commit 9688ca3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@

- Enable 3.12 CI (#4035)
- Build docker images in parallel (#4054)
- Build docker images with 3.12 (#4055)

### Documentation

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-slim AS builder
FROM python:3.12-slim AS builder

RUN mkdir /src
COPY . /src/
Expand All @@ -12,7 +12,7 @@ RUN . /opt/venv/bin/activate && pip install --no-cache-dir --upgrade pip setupto
&& cd /src && hatch build -t wheel \
&& pip install --no-cache-dir dist/*-cp*[colorama,d,uvloop]

FROM python:3.11-slim
FROM python:3.12-slim

# copy only Python packages to limit the image size
COPY --from=builder /opt/venv /opt/venv
Expand Down

0 comments on commit 9688ca3

Please sign in to comment.