feature/ssh-server #1

Merged
marcio.fernandes merged 21 commits from feature/ssh-server into main 2025-09-07 13:50:19 +00:00
2 changed files with 9 additions and 4 deletions
Showing only changes of commit 8e75b904c4 - Show all commits

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