Compare commits
7 Commits
3f5718ed6a
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 0c79ccf1fc | |||
| e0064c4d1e | |||
| edc651ee88 | |||
| aa4b99848a | |||
| 25c8b2d317 | |||
| 09f509263d | |||
| 397dfcb85c |
@@ -9,17 +9,17 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
with:
|
||||
github-server-url: 'https://git.secretmine.de/'
|
||||
- name: Login to Registry
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
registry: git.secretmine.de
|
||||
username: ${{ secrets.REGISTRY_USER }}
|
||||
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||
- name: Build Image
|
||||
uses: docker/build-push-action@v5
|
||||
uses: docker/build-push-action@v7
|
||||
with:
|
||||
file: Containerfile
|
||||
context: .
|
||||
|
||||
@@ -12,15 +12,15 @@ jobs:
|
||||
contents: read
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
- name: Login to Registry
|
||||
uses: docker/login-action@v3
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Build Image
|
||||
uses: docker/build-push-action@v5
|
||||
uses: docker/build-push-action@v7
|
||||
with:
|
||||
file: Containerfile
|
||||
context: .
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
FROM python:3-slim-trixie
|
||||
FROM python:3.14-slim-trixie
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y \
|
||||
|
||||
+3
-3
@@ -1,3 +1,3 @@
|
||||
flask
|
||||
pyyaml
|
||||
bootstrap-flask
|
||||
flask==3.1.3
|
||||
pyyaml==6.0.3
|
||||
bootstrap-flask==2.5.0
|
||||
|
||||
Reference in New Issue
Block a user