diff --git a/Dockerfile b/Dockerfile index 925e5ad..77bd74c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,11 +11,11 @@ RUN mkdir -p ${LOG_DIR} WORKDIR "/usr/local/bin/glassminers" COPY ./scripts/download_server.sh ./ -COPY ./scripts/run_server.sh ./ +COPY ./scripts/server_script.sh ./ RUN chmod 777 ./*.sh RUN ./download_server.sh -CMD ["./run_server.sh"] +CMD ["./server_script.sh"] EXPOSE 9876 \ No newline at end of file diff --git a/scripts/run_server.sh b/scripts/server_script.sh similarity index 100% rename from scripts/run_server.sh rename to scripts/server_script.sh