From 1b46e1c7546aacc10363e45dfaa5a84c33e97f8f Mon Sep 17 00:00:00 2001 From: bretello Date: Thu, 22 Oct 2020 00:17:56 +0200 Subject: [PATCH] mv entrypoint{,.sh} --- Dockerfile | 4 ++-- entrypoint => entrypoint.sh | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename entrypoint => entrypoint.sh (100%) diff --git a/Dockerfile b/Dockerfile index 584a399..3896761 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,10 +14,10 @@ FROM debian:stable ENV DEBIAN_FRONTEND=noninteractive COPY --from=builder /go/bin/broadcast /srv/ -COPY ./entrypoint /entrypoint +COPY ./entrypoint.sh /entrypoint.sh WORKDIR /srv RUN apt-get update \ && apt-get install -y libmp3lame0 \ && rm -rf /var/lib/apt/lists/* -ENTRYPOINT ["/entrypoint"] +ENTRYPOINT ["/entrypoint.sh"] diff --git a/entrypoint b/entrypoint.sh similarity index 100% rename from entrypoint rename to entrypoint.sh