Compare commits

..

No commits in common. "#3-cloudify-loic" and "main" have entirely different histories.

View file

@ -1,12 +0,0 @@
FROM golang:1.24 AS builder
WORKDIR /app
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -o loic .
RUN ls -l /app/loic
FROM alpine:latest
WORKDIR /app/
COPY --from=builder /app/loic .
COPY pkg/web/templates/ pkg/web/templates/
ENTRYPOINT [ "./loic" ]
CMD [ "web" ]