Compare commits

..

4 Commits

Author SHA1 Message Date
33be179905 updated wildfly
All checks were successful
CI / Build wildfly docker images (push) Successful in 11m20s
2026-03-16 21:23:36 +08:00
d10cdacb16 bumped nginx image to 1.29.6
All checks were successful
CI / Build nginx docker images (push) Successful in 6m38s
2026-03-15 21:05:46 +08:00
650c77aca6 bump opencode to 1.2.26
All checks were successful
CI / Build opencode docker images (push) Successful in 9m59s
2026-03-14 12:15:24 +08:00
3708900fd6 added helix to opencode image 2026-03-14 12:14:07 +08:00
4 changed files with 12 additions and 11 deletions

View File

@@ -31,12 +31,12 @@ jobs:
ssh: default=/home/luser/.ssh/id_ed25519 ssh: default=/home/luser/.ssh/id_ed25519
tags: | tags: |
"gitea.woggioni.net/woggioni/nginx:latest" "gitea.woggioni.net/woggioni/nginx:latest"
"gitea.woggioni.net/woggioni/nginx:v1.29.5" "gitea.woggioni.net/woggioni/nginx:v1.29.6"
secrets: | secrets: |
GIT_AUTH_TOKEN.github.com=${{ secrets.GH_ACCESS_TOKEN }} GIT_AUTH_TOKEN.github.com=${{ secrets.GH_ACCESS_TOKEN }}
build-args: | build-args: |
LIBRESSL_VERSION=4.2.1 LIBRESSL_VERSION=4.2.1
NGINX_VERSION=1.29.5 NGINX_VERSION=1.29.6
NGINX_BRANCH=vanilla NGINX_BRANCH=vanilla
- -
name: Build and push nginx custom images name: Build and push nginx custom images
@@ -53,10 +53,10 @@ jobs:
ssh: default=/home/luser/.ssh/id_ed25519 ssh: default=/home/luser/.ssh/id_ed25519
tags: | tags: |
"gitea.woggioni.net/woggioni/nginx:woggioni" "gitea.woggioni.net/woggioni/nginx:woggioni"
"gitea.woggioni.net/woggioni/nginx:v1.29.5-woggioni" "gitea.woggioni.net/woggioni/nginx:v1.29.6-woggioni"
secrets: | secrets: |
GIT_AUTH_TOKEN.github.com=${{ secrets.GH_ACCESS_TOKEN }} GIT_AUTH_TOKEN.github.com=${{ secrets.GH_ACCESS_TOKEN }}
build-args: | build-args: |
LIBRESSL_VERSION=4.2.1 LIBRESSL_VERSION=4.2.1
NGINX_VERSION=1.29.5 NGINX_VERSION=1.29.6
NGINX_BRANCH=woggioni NGINX_BRANCH=woggioni

View File

@@ -24,7 +24,7 @@ jobs:
builder: multiplatform-builder builder: multiplatform-builder
context: "{{defaultContext}}:opencode" context: "{{defaultContext}}:opencode"
build-args: | build-args: |
OPENCODE_VERSION=1.2.24 OPENCODE_VERSION=1.2.26
ALPINE_VERSION=3.23 ALPINE_VERSION=3.23
platforms: | platforms: |
linux/amd64 linux/amd64
@@ -32,8 +32,8 @@ jobs:
push: true push: true
pull: true pull: true
tags: | tags: |
"gitea.woggioni.net/woggioni/opencode:1.2.24" "gitea.woggioni.net/woggioni/opencode:1.2.26"
"gitea.woggioni.net/woggioni/opencode:1.2.24-alpine3.23" "gitea.woggioni.net/woggioni/opencode:1.2.26-alpine3.23"
"gitea.woggioni.net/woggioni/opencode:1.2.24-alpine" "gitea.woggioni.net/woggioni/opencode:1.2.26-alpine"
"gitea.woggioni.net/woggioni/opencode:latest" "gitea.woggioni.net/woggioni/opencode:latest"

View File

@@ -26,6 +26,6 @@ jobs:
pull: true pull: true
tags: | tags: |
"gitea.woggioni.net/woggioni/wildfly:latest" "gitea.woggioni.net/woggioni/wildfly:latest"
"gitea.woggioni.net/woggioni/wildfly:39.0.0" "gitea.woggioni.net/woggioni/wildfly:39.0.1"
build-args: "VERSION=39.0.0" build-args: "VERSION=39.0.1"

View File

@@ -1,7 +1,7 @@
ARG ALPINE_VERSION=latest ARG ALPINE_VERSION=latest
FROM --platform=$BUILDPLATFORM alpine:${ALPINE_VERSION} AS base FROM --platform=$BUILDPLATFORM alpine:${ALPINE_VERSION} AS base
RUN --mount=type=cache,target=/var/cache/apk apk update RUN --mount=type=cache,target=/var/cache/apk apk update
RUN --mount=type=cache,target=/var/cache/apk apk add rust-analyzer openjdk25-jdk jdtls pipx ripgrep git RUN --mount=type=cache,target=/var/cache/apk apk add rust-analyzer openjdk25-jdk jdtls pipx ripgrep git helix helix-tree-sitter-vendor
RUN adduser -D -h /var/lib/opencode opencode RUN adduser -D -h /var/lib/opencode opencode
RUN mkdir /workspace RUN mkdir /workspace
RUN chown opencode:opencode /workspace RUN chown opencode:opencode /workspace
@@ -24,6 +24,7 @@ ADD --chown=opencode:opencode ./opencode.json /etc/opencode/opencode.json
RUN mkdir -p /usr/lib/opencode/addons RUN mkdir -p /usr/lib/opencode/addons
ADD --chmod=644 https://repo1.maven.org/maven2/org/projectlombok/lombok/1.18.44/lombok-1.18.44.jar /usr/lib/opencode/addons/lombok.jar ADD --chmod=644 https://repo1.maven.org/maven2/org/projectlombok/lombok/1.18.44/lombok-1.18.44.jar /usr/lib/opencode/addons/lombok.jar
ENV OPENCODE_CONFIG=/etc/opencode/opencode.json ENV OPENCODE_CONFIG=/etc/opencode/opencode.json
ENV EDITOR=hx
USER opencode USER opencode
WORKDIR /workspace WORKDIR /workspace
ENTRYPOINT ["opencode"] ENTRYPOINT ["opencode"]