Block a user
allowance-planner (ad48882)
Installation
docker pull gitea.seeseepuff.be/seeseemelk/allowance-planner:ad48882sha256:28905ed338addc9a2ee71bd7f914fb76073ba1e619cf5ec8f7f054ea3bfdb9a4
Image Layers
| ADD alpine-minirootfs-3.21.3-aarch64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| RUN /bin/sh -c apk add --no-cache ca-certificates # buildkit |
| ENV GOLANG_VERSION=1.24.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 go.sum ./ # buildkit |
| RUN /bin/sh -c go mod download # buildkit |
| COPY migrations ./migrations/ # buildkit |
| COPY *.go ./ # buildkit |
| COPY *.gohtml ./ # buildkit |
| RUN /bin/sh -c go build -o /allowance_planner # buildkit |
| EXPOSE map[8080/tcp:{}] |
| ENV GIN_MODE=release |
| CMD ["/allowance_planner"] |