diff --git a/docker/build/Dockerfile b/docker/build/Dockerfile index e9bc805..00dc3ce 100644 --- a/docker/build/Dockerfile +++ b/docker/build/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:20.04 +FROM ubuntu:latest ENV LANG C.UTF-8 RUN apt-get update && apt-get install -y \ python3 \ @@ -20,6 +20,6 @@ RUN apt-get update && apt-get install -y \ && echo 'export PATH="/usr/lib/ccache:$PATH"' | tee -a ~/.bashrc # Copies your code file from your action repository to the filesystem path `/` of the container -COPY getSU2DataMiner.sh /getSU2DataMiner.sh +COPY docker/build/getSU2DataMiner.sh /getSU2DataMiner.sh ENTRYPOINT ["/getSU2DataMiner.sh"]