Skip to content

Commit

Permalink
Upgrade base docker image version to v2, and have v2 use py3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
ewjoachim committed Aug 3, 2023
1 parent 0325d3e commit 6b5eb6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ jobs:
uses: docker/build-push-action@v4
with:
# See Dockerfile.build for instructions on bumping this.
tags: ewjoachim/python-coverage-comment-action-base:v1
tags: ewjoachim/python-coverage-comment-action-base:v2
push: true
file: Dockerfile.build
3 changes: 1 addition & 2 deletions Dockerfile.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# - Dockerfile
# - .github/workflows/docker.yml

FROM python:3.10-slim
FROM python:3.11-slim

RUN set -eux; \
apt-get update; \
Expand All @@ -15,7 +15,6 @@ RUN git config --system --add safe.directory '*'
WORKDIR /workdir

COPY pyproject.toml ./
COPY poetry.lock ./
COPY coverage_comment ./coverage_comment
ENV PIP_DISABLE_PIP_VERSION_CHECK=1
ENV PIP_ROOT_USER_ACTION=ignore
Expand Down

0 comments on commit 6b5eb6d

Please sign in to comment.