From a18ed85ee9010ca069c161703ef72634912823f1 Mon Sep 17 00:00:00 2001 From: Vassiliy Yegorov Date: Wed, 27 May 2026 23:16:15 +0700 Subject: [PATCH] init --- .gitea/workflows/build.yml | 30 ++++++++++++++++++++++++++++++ Dockerfile | 5 +++++ 2 files changed, 35 insertions(+) create mode 100644 .gitea/workflows/build.yml create mode 100644 Dockerfile diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..d5664a1 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,30 @@ +name: Build and Push + +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Login to Registry + uses: docker/login-action@v3 + with: + registry: git.realmanual.ru + username: ${{ github.actor }} + password: ${{ secrets.TOKEN }} + + - name: Build and Push + uses: docker/build-push-action@v6 + with: + context: . + push: true + tags: git.realmanual.ru/pub/openssh-client:latest diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..be81e46 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM alpine:latest + +LABEL maintainer "Vassiliy Yegorov " + +RUN apk add --no-cache openssh-client