Renamed server_script.sh to run_script.sh

This commit is contained in:
2025-07-04 17:15:31 +02:00
parent cac9e90edd
commit 67f08de20f
2 changed files with 2 additions and 2 deletions

View File

@@ -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