We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fe0d3bb + f2c2df8 commit 0f1e49cCopy full SHA for 0f1e49c
1 file changed
Dockerfile
@@ -8,8 +8,10 @@ LABEL org.opencontainers.image.source=https://github.com/SierraSoftworks/github-
8
LABEL org.opencontainers.image.description="Backup your GitHub repositories and releases automatically"
9
LABEL org.opencontainers.image.licenses=MIT
10
11
-RUN apt-get update && apt-get install -y \
12
- openssl
+RUN apt-get update && \
+ apt-get install -y openssl && \
13
+ apt-get clean && \
14
+ rm -rf /var/lib/apt/lists/*
15
16
ADD ./github-backup /usr/local/bin/github-backup
17
0 commit comments