From a8798d475c612a6f76ddcb132d828ad8eb69fbfe Mon Sep 17 00:00:00 2001 From: charleszlu Date: Thu, 30 May 2019 07:59:37 +1000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b6bf51f..0a4439f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,12 +10,12 @@ ENV CRON_LOG_LEVEL=8 RUN apk --update add --no-cache bash bzip2 gzip postgresql-client tzdata # Copy files to the image -ADD autopostgresqlbackup.conf /etc/default/autopostgresqlbackup -ADD autopostgresqlbackup /usr/sbin/autopostgresqlbackup +COPY autopostgresqlbackup.conf /etc/default/autopostgresqlbackup +COPY autopostgresqlbackup /usr/sbin/autopostgresqlbackup RUN chmod 755 /usr/sbin/autopostgresqlbackup # Configure entrypoint -ADD docker-entrypoint.sh /docker-entrypoint.sh +COPY docker-entrypoint.sh /docker-entrypoint.sh RUN chmod +x /docker-entrypoint.sh # Volumes declaration