File size: 416 Bytes
cfe968b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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"]