autorestic/Dockerfile

13 lines
230 B
Docker
Raw Normal View History

2022-02-16 20:52:12 +00:00
FROM golang:1.17-alpine as builder
2021-11-20 15:59:13 +00:00
WORKDIR /app
COPY go.* .
RUN go mod download
COPY . .
RUN go build
FROM alpine
RUN apk add --no-cache restic rclone
COPY --from=builder /app/autorestic /usr/bin/autorestic
CMD [ "autorestic" ]