diff --git a/random-test/Dockerfile b/random-test/Dockerfile index 63f1dd6..000ae20 100644 --- a/random-test/Dockerfile +++ b/random-test/Dockerfile @@ -1,6 +1,7 @@ -FROM python:3.8-buster +FROM python:3.9.2-buster -COPY fibonacci-sum.py fibonacci-sum.py -RUN chmod a+x fibonacci-sum.py +COPY fibonacci-sum.py /home/fibonacci-sum.py +WORKDIR /home/ +RUN chmod a+x /home/fibonacci-sum.py -ENTRYPOINT ["python", "fibonacci-sum.py"] \ No newline at end of file +ENTRYPOINT ["python3", "/home/fibonacci-sum.py"]