From 4529061bc41c81ec83b7bca50df66ddee53cd4b6 Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Wed, 30 Nov 2022 20:13:57 +0100 Subject: [PATCH] Rename entrypoint.py to aptly-publish --- Dockerfile | 6 +++--- entrypoint.py => aptly-publish | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename entrypoint.py => aptly-publish (100%) diff --git a/Dockerfile b/Dockerfile index a567984..0e71871 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM alpine -ADD entrypoint.py /bin/ -RUN chmod +x /bin/entrypoint.py +ADD aptly-publish /bin/ +RUN chmod +x /bin/aptly-publish RUN apk -Uuv add python3 py3-requests py3-urllib3 py3-pip RUN pip install debian-parser -ENTRYPOINT /bin/entrypoint.py +ENTRYPOINT /bin/aptly-publish diff --git a/entrypoint.py b/aptly-publish similarity index 100% rename from entrypoint.py rename to aptly-publish