fix(docker): fix spelling and entrypoint
All checks were successful
docker / docker (push) Successful in 2m2s
All checks were successful
docker / docker (push) Successful in 2m2s
This commit is contained in:
@@ -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"]
|
||||||
|
|||||||
Reference in New Issue
Block a user