Skip to content

Commit

Permalink
👷 Fix docker build
Browse files Browse the repository at this point in the history
- uvloop does not build on python3:13 (latest)
  • Loading branch information
essembeh committed Oct 9, 2024
1 parent c4bd837 commit 7416aeb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
python-version: "3.12"
- name: Install poetry
run: pip install poetry
- name: Build app
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#######################################
## Buider
#######################################
FROM python:3 as builder
FROM python:3.12 as builder

RUN pip3 install poetry
ADD . /app
Expand Down

0 comments on commit 7416aeb

Please sign in to comment.