Compare commits

..

No commits in common. "ba33a87fb10114ce8bbb7fb0fee93f42af83d238" and "2e49a4f3a35e7a25fd88600faa8de6836b9f5f4c" have entirely different histories.

3 changed files with 3 additions and 7 deletions

View File

@ -1,8 +1,5 @@
name: Container build name: Container build
on: on: [ push ]
push: true
schedule:
- cron: '0 16 * * FRI'
jobs: jobs:
container-build: container-build:

View File

@ -1,7 +1,7 @@
FROM docker.io/fedora:41 FROM docker.io/fedora:41
# === setup system === # === setup system ===
RUN dnf update -y && dnf -y install neovim unzip \ RUN dnf -y install neovim unzip \
bash-completion zoxide fd-find procps \ bash-completion zoxide fd-find procps \
git go npm git go npm
@ -19,5 +19,5 @@ COPY config/nvim/lazyvim.json /home/user/.config/nvim/lazyvim.json
# === setup container === # === setup container ===
ENV TZ="Europe/Amsterdam" ENV TZ="Europe/Amsterdam"
VOLUME /home/user/.local /home/user/.cache /home/user/.config/github-copilot VOLUME /home/user/.local /home/user/.config/github-copilot
CMD ["bash"] CMD ["bash"]

View File

@ -11,7 +11,6 @@ podman run -it \
-v ~/.config/git:/home/user/.config/git \ -v ~/.config/git:/home/user/.config/git \
-v "$name"-copilot:/home/user/.config/github-copilot \ -v "$name"-copilot:/home/user/.config/github-copilot \
-v "$name"-local:/home/user/.local \ -v "$name"-local:/home/user/.local \
-v "$name"-cache:/home/user/.cache \
--security-opt label=disable \ --security-opt label=disable \
--userns=keep-id \ --userns=keep-id \
git.plabble.org/job79/dev:latest git.plabble.org/job79/dev:latest