diff options
| author | 2024-04-10 22:02:49 +0100 | |
|---|---|---|
| committer | 2024-04-10 22:02:49 +0100 | |
| commit | eb615cab63227215f5089435f53f5bb6e6fc1d83 (patch) | |
| tree | ee48f993a66e11662e75a6f02920b2c90dc26e96 /Dockerfile | |
| parent | Merge pull request #172 from python-discord/dependabot/pip/sentry-sdk-1.44.1 (diff) | |
| parent | Change Poetry to install `--no-root` in Docker (diff) | |
Merge pull request #174 from python-discord/jb3/python-3.12
Bump to Python 3.12
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,9 +1,9 @@ -FROM --platform=linux/amd64 ghcr.io/owl-corp/python-poetry-base:3.11-slim +FROM --platform=linux/amd64 ghcr.io/owl-corp/python-poetry-base:3.12-slim # Install project dependencies WORKDIR /app COPY pyproject.toml poetry.lock ./ -RUN poetry install --without dev +RUN poetry install --without dev --no-root # Set Git SHA environment variable for Sentry ARG git_sha="development" |