Skip to content

Commit

Permalink
bump python base image to fix multiple CVEs, adjust container image
Browse files Browse the repository at this point in the history
  • Loading branch information
voron committed May 30, 2024
1 parent 0a5f016 commit 67f893d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ jobs:

- name: Login to registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Docker meta
id: meta_id
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Globals and input args
FROM python:3.11.5-alpine3.18
FROM python:3.12.3-alpine3.20
WORKDIR /app

# Prepare our app requirements and install it...
Expand Down

0 comments on commit 67f893d

Please sign in to comment.