Initial commit
Runner CI/CD / Build (map[name:java path:docker/java/Dockerfile]) (push) Successful in 25s
Runner CI/CD / Build (map[name:python path:docker/python/Dockerfile]) (push) Successful in 22s

This commit is contained in:
2026-05-06 19:21:32 +02:00
commit ab74385478
4 changed files with 43 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
name: Runner CI/CD
run-name: ${{ gitea.actor }} is building runner images
on:
- push
jobs:
Build:
runs-on: ubuntu-latest
strategy:
matrix:
image:
- name: java
path: docker/java/Dockerfile
- name: python
path: docker/python/Dockerfile
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Docker login
run: echo "${{ secrets.PACKAGE_TOKEN }}" | docker login gitea.davygora.duckdns.org -u yura --password-stdin
- name: Build
run: |
docker build -f ${{ matrix.image.path }} \
-t gitea.davygora.duckdns.org/yura/${{ matrix.image.name }}-runner:latest .
- name: Push
run: docker push gitea.davygora.duckdns.org/yura/${{ matrix.image.name }}-runner:latest
+6
View File
@@ -0,0 +1,6 @@
# IDE
**/.idea
**/*.iml
**/*.ipr
**/*.iws
+3
View File
@@ -0,0 +1,3 @@
FROM eclipse-temurin:25-jdk-alpine
RUN apk add nodejs npm git
+3
View File
@@ -0,0 +1,3 @@
FROM python:alpine
RUN apk add nodejs npm git make