a
Some checks failed
/ ssh-client-container (push) Failing after 22s
/ ssh-server-container (push) Successful in 20s

This commit is contained in:
2025-09-06 23:57:09 +00:00
parent 6170359f89
commit 8e75b904c4
2 changed files with 9 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ jobs:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Log in to git.limbosolutions.com docker registry - name: Log in to git.limbosolutions.com container registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: git.limbosolutions.com registry: git.limbosolutions.com
@@ -41,7 +41,7 @@ jobs:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Log in to git.limbosolutions.com docker registry - name: Log in to git.limbosolutions.com container registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: git.limbosolutions.com registry: git.limbosolutions.com
@@ -51,4 +51,9 @@ jobs:
- name: Build ssh-server images - name: Build ssh-server images
run: | run: |
cd ${{gitea.workspace}}/docker/ssh-server cd ${{gitea.workspace}}/docker/ssh-server
BUILD_ENV=prod ./scripts/build.sh BUILD_ENV=prod ./scripts/build.sh
- name: Push image
run: docker push git.limbosolutions.com/kb/ssh-server

View File

@@ -4,7 +4,7 @@
# ──────────────── Stage 1: Base ──────────────── # ──────────────── Stage 1: Base ────────────────
# Base image using Debian Bullseye # Base image using Debian Bullseye
FROM debian:bullseye as base FROM debian:bullseye AS base
# Suppress interactive prompts during package installation # Suppress interactive prompts during package installation