All checks were successful
/ build-docker-image (push) Successful in 1m21s
15 lines
384 B
Docker
15 lines
384 B
Docker
|
|
FROM duplicati/duplicati
|
|
RUN apt update && apt install -y default-mysql-client && rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY ../../ /app
|
|
RUN ls ./app
|
|
|
|
COPY ../../docker/scripts /usr/local/bin
|
|
COPY ./scripts /usr/local/bin
|
|
|
|
RUN chmod +x /usr/local/bin/duplicati-influxdb-notify
|
|
RUN chmod +x /usr/local/bin/duplicati-mysql-backup
|
|
RUN chmod +x /usr/local/bin/dockerlog
|
|
|
|
EXPOSE 8200 |