mv entrypoint{,.sh}

master
bretello 2020-10-22 00:17:56 +02:00
parent 1f303b8819
commit 1b46e1c754
2 changed files with 2 additions and 2 deletions

View File

@ -14,10 +14,10 @@ FROM debian:stable
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
COPY --from=builder /go/bin/broadcast /srv/ COPY --from=builder /go/bin/broadcast /srv/
COPY ./entrypoint /entrypoint COPY ./entrypoint.sh /entrypoint.sh
WORKDIR /srv WORKDIR /srv
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y libmp3lame0 \ && apt-get install -y libmp3lame0 \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["/entrypoint"] ENTRYPOINT ["/entrypoint.sh"]