diff --git a/Dockerfile b/Dockerfile index d8d9598ef01293b5faa329716e326e93347d0474..21ba29c3b0b4b57c6b952533f7792b596404a97a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ # Use a base image FROM ubuntu:22.04 -RUN sudo apt update && sudo apt upgrade -RUN sudo apt install python3.11 +RUN apt update && apt upgrade -y +RUN apt install -y python3.11 # Print "Hello, World!" when the container starts CMD echo "Hello, World!" && echo "Hello again!" \ No newline at end of file