diff options
author | 2023-03-04 09:05:23 +0000 | |
---|---|---|
committer | 2023-03-04 09:08:02 +0000 | |
commit | d0b35bf70807a3a89cbf43c4e2de646bc30e2a3e (patch) | |
tree | 6c8894f889c99e2575e8adaba424b6ababb1af22 /Dockerfile | |
parent | fixed embed interaction and randomly choosing a kata (#1218) (diff) |
Bump Python version to 3.11
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/chrislovering/python-poetry-base:3.10-slim +FROM --platform=linux/amd64 ghcr.io/chrislovering/python-poetry-base:3.11-slim # Install dependencies WORKDIR /bot COPY pyproject.toml poetry.lock ./ -RUN poetry install --without dev +RUN poetry install --only main # Set SHA build argument ARG git_sha="development" |