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