From 243bf8915aa860fce4bed7fafbc4945b89092e3c Mon Sep 17 00:00:00 2001 From: R4SAS Date: Thu, 17 Jun 2021 14:24:33 +0300 Subject: [PATCH] [docker] revert entrypoint path --- contrib/docker/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/docker/Dockerfile b/contrib/docker/Dockerfile index 12325ee6..71af141e 100644 --- a/contrib/docker/Dockerfile +++ b/contrib/docker/Dockerfile @@ -45,12 +45,12 @@ RUN apk update \ # 2. Adding required libraries to run i2pd to ensure it will run. RUN apk --no-cache add boost-filesystem boost-system boost-program_options boost-date_time boost-thread boost-iostreams openssl miniupnpc musl-utils libstdc++ -COPY entrypoint.sh /opt/entrypoint.sh -RUN chmod a+x /opt/entrypoint.sh +COPY entrypoint.sh /entrypoint.sh +RUN chmod a+x /entrypoint.sh RUN echo "export DATA_DIR=${DATA_DIR}" >> /etc/profile VOLUME "$DATA_DIR" EXPOSE 7070 4444 4447 7656 2827 7654 7650 USER i2pd -ENTRYPOINT [ "/opt/entrypoint.sh" ] +ENTRYPOINT [ "/entrypoint.sh" ]