11 lines
172 B
Docker
11 lines
172 B
Docker
FROM debian
|
|
|
|
RUN apt-get update && apt-get -y install cron openssh-client
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
COPY backup.sh /backups.sh
|
|
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|
|
|