diff options
| author | Max Resnick <max@ofmax.li> | 2025-10-25 23:31:11 -0700 |
|---|---|---|
| committer | Max Resnick <max@ofmax.li> | 2025-10-25 23:31:11 -0700 |
| commit | 6b1161f62bf6eee21e3d3b55811a1c60371fdbf5 (patch) | |
| tree | e98c4fae62498a27cebe7f82e1d503b2b4ba3e3b | |
| parent | 7461c7d0256d4c058cc3b8007aac043be733e286 (diff) | |
| download | grumpy-containers-6b1161f62bf6eee21e3d3b55811a1c60371fdbf5.tar.gz | |
chore: rename cluster, bump base, fix missing user
| -rw-r--r-- | src/base/Dockerfile | 4 | ||||
| -rw-r--r-- | src/base/VERSION | 2 | ||||
| -rw-r--r-- | src/cluster-debug/Dockerfile (renamed from src/cluster/Dockerfile) | 14 | ||||
| -rw-r--r-- | src/cluster-debug/VERSION (renamed from src/cluster/VERSION) | 0 | ||||
| -rwxr-xr-x | src/cluster-debug/entrypoint.sh (renamed from src/cluster/entrypoint.sh) | 0 | ||||
| -rw-r--r-- | src/unbound-adblock/VERSION | 2 |
6 files changed, 13 insertions, 9 deletions
diff --git a/src/base/Dockerfile b/src/base/Dockerfile index 92c7c5a..df82326 100644 --- a/src/base/Dockerfile +++ b/src/base/Dockerfile @@ -25,4 +25,8 @@ WORKDIR /opt/app FROM debian:bookworm-slim as finale ENV DEBIAN_FRONTEND=noninteractive COPY bin/install_deb /usr/local/bin/install_deb +RUN useradd -s /usr/sbin/nologin \ + --create-home \ + --home-dir /opt/app \ + app RUN install_deb ca-certificates diff --git a/src/base/VERSION b/src/base/VERSION index b043aa6..992ac75 100644 --- a/src/base/VERSION +++ b/src/base/VERSION @@ -1 +1 @@ -v0.5.0 +v0.5.1 diff --git a/src/cluster/Dockerfile b/src/cluster-debug/Dockerfile index d8627cf..2a02007 100644 --- a/src/cluster/Dockerfile +++ b/src/cluster-debug/Dockerfile @@ -1,13 +1,13 @@ ARG BASE_VER=latest FROM gcr.io/google-containers/pause:latest -FROM golang:1.17-bullseye -WORKDIR /app -RUN git clone https://git.ofmax.li/go-echo \ - && cd go-echo \ - && go build -o /go-echo - -FROM public.ecr.aws/x2w2w0z4/base:${BASE_VER} +FROM golang:1.25-trixie +WORKDIR /app +RUN git clone https://git.ofmax.li/go-echo \ + && cd go-echo \ + && go build -o /go-echo + +FROM public.ecr.aws/x2w2w0z4/base:${BASE_VER} ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update -y \ && apt-get upgrade -y \ diff --git a/src/cluster/VERSION b/src/cluster-debug/VERSION index 1474d00..1474d00 100644 --- a/src/cluster/VERSION +++ b/src/cluster-debug/VERSION diff --git a/src/cluster/entrypoint.sh b/src/cluster-debug/entrypoint.sh index 31112c0..31112c0 100755 --- a/src/cluster/entrypoint.sh +++ b/src/cluster-debug/entrypoint.sh diff --git a/src/unbound-adblock/VERSION b/src/unbound-adblock/VERSION index 5c314e5..77cada2 100644 --- a/src/unbound-adblock/VERSION +++ b/src/unbound-adblock/VERSION @@ -1 +1 @@ -v0.0.5 +v0.0.6 |