~repos /gromer
git clone
https://pyrossh.dev/repos/gromer.git
gromer is a framework and cli to build multipage web apps in golang using htmx and alpinejs.
file:
_example/Containerfile
FROM golang:1.18-buster AS build
WORKDIR /appCOPY go.mod ./COPY go.sum ./RUN go mod downloadCOPY ./ ./RUN cd _example && go build -o /out
FROM gcr.io/distroless/base:latest
WORKDIR /COPY --from=build /out /outENTRYPOINT ["/out"]