mirror of
https://github.com/garethgeorge/backrest.git
synced 2026-05-04 20:10:36 +00:00
9 lines
348 B
Docker
9 lines
348 B
Docker
FROM garethgeorge/backrest:latest AS backrest
|
|
FROM ubuntu:14.04 AS ubuntu
|
|
COPY --from=backrest /tmp /tmp
|
|
COPY --from=backrest /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
|
COPY --from=backrest /backrest /backrest
|
|
# install custom binaries for use with backrest hooks
|
|
RUN apt-get update && apt-get install -y curl bash
|
|
ENTRYPOINT ["/backrest"]
|