Block a user
lilou-cat (latest)
Published 2025-12-20 23:06:29 +00:00 by pihkaal
Installation
docker pull git.pihkaal.xyz/pihkaal/lilou-cat:latestsha256:d51a9a34e24e775bbf18a0b0a6bad10ba97ea3e6a697375dc4c5542337edf211
Image Layers
| ADD file:b4987bca8c4c4c640d6b71dcccfd7172b44771e0f851a47d05c00c2bdcd204f6 in / |
| CMD ["bash"] |
| RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates curl gnupg netbase sq wget ; rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends git mercurial openssh-client subversion procps ; rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends g++ gcc libc6-dev make pkg-config ; rm -rf /var/lib/apt/lists/* # buildkit |
| ENV GOLANG_VERSION=1.23.2 |
| ENV GOTOOLCHAIN=local |
| ENV GOPATH=/go |
| ENV PATH=/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| COPY /target/ / # buildkit |
| RUN /bin/sh -c mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 1777 "$GOPATH" # buildkit |
| WORKDIR /go |
| WORKDIR /app |
| COPY go.mod ./ # buildkit |
| RUN /bin/sh -c go mod download # buildkit |
| COPY *.go ./ # buildkit |
| COPY public ./public # buildkit |
| RUN /bin/sh -c go build -o ./server # buildkit |
| EXPOSE [3000/tcp] |
| CMD ["./server"] |