# Use the official Ubuntu base image FROM ubuntu:latest # Update package lists and install necessary packages RUN apt-get update && \ apt-get install -y python3 python3-pip git # Set the working directory WORKDIR /app # Copy your application code into the container (assuming it's in the same directory as the Dockerfile) COPY . /app # Define the default command to run when the container starts CMD ["bash"]