autorestic/Dockerfile

13 lines
243 B
Docker
Raw Normal View History

2022-04-14 12:05:19 +02:00
FROM golang:1.18-alpine as builder
2021-11-20 16:59:13 +01:00
WORKDIR /app
COPY go.* .
RUN go mod download
COPY . .
RUN go build
FROM alpine
2022-03-11 20:34:33 +01:00
RUN apk add --no-cache restic rclone bash openssh
2021-11-20 16:59:13 +01:00
COPY --from=builder /app/autorestic /usr/bin/autorestic
CMD [ "autorestic" ]