Compare commits

...

2 Commits

Author SHA1 Message Date
927e4ad227 fix(kali): use -p for creating home dirs
All checks were successful
Build container / fedora-build (push) Successful in 8m5s
2025-10-19 20:43:47 +02:00
fa489baac7 refactor: rename base to fedora 2025-10-19 20:43:25 +02:00
10 changed files with 9 additions and 9 deletions

View File

@@ -8,7 +8,7 @@ on:
- cron: "0 16 * * FRI"
jobs:
base-build:
fedora-build:
runs-on: job-latest
steps:
- name: Clone repo
@@ -21,15 +21,15 @@ jobs:
registry: git.plabble.org
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Build and push base container
- name: Build and push fedora container
uses: docker/build-push-action@v5
with:
context: ./containers/base
file: ./containers/base/Containerfile
context: ./containers/fedora
file: ./containers/fedora/Containerfile
push: true
tags: |
git.plabble.org/job79/base:${{ github.ref_name }}
git.plabble.org/job79/base:latest
git.plabble.org/job79/fedora:${{ github.ref_name }}
git.plabble.org/job79/fedora:latest
- name: Build and push go container
uses: docker/build-push-action@v5
with:

View File

@@ -1,4 +1,4 @@
FROM git.plabble.org/job79/base:latest
FROM git.plabble.org/job79/fedora
USER root
RUN dnf -y install go
USER user

View File

@@ -1,4 +1,4 @@
FROM git.plabble.org/job79/base:latest
FROM git.plabble.org/job79/fedora
USER root
RUN dnf -y install kubectl openssl
RUN curl -sL https://talos.dev/install | sh

View File

@@ -12,6 +12,6 @@ RUN useradd -ms /bin/bash user && \
USER user
WORKDIR /home/user
RUN mkdir .config .local .cache
RUN mkdir -p .config .local .cache
RUN git clone https://git.plabble.org/Job79/neovim-config.git .config/nvim
VOLUME /home/user