fix(docker): fix spelling and entrypoint
All checks were successful
docker / docker (push) Successful in 2m2s

This commit is contained in:
2025-11-20 14:14:22 +01:00
parent 2a03c0e640
commit 093b67864c

View File

@@ -1,4 +1,4 @@
FROM golang:latest as builder FROM golang:latest AS builder
WORKDIR /app WORKDIR /app
COPY go.mod go.sum ./ COPY go.mod go.sum ./
RUN go mod download RUN go mod download
@@ -8,4 +8,4 @@ RUN go build -v -o svg-templater ./...
FROM alpine:latest FROM alpine:latest
WORKDIR /root/ WORKDIR /root/
COPY --from=builder /app/svg-templater /usr/local/bin/svg-templater COPY --from=builder /app/svg-templater /usr/local/bin/svg-templater
CMD ["./svg-templater"] CMD ["svg-templater"]