You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
404 B
16 lines
404 B
1 year ago
|
FROM python:3.10
|
||
|
|
||
|
# Install Python and pip
|
||
|
RUN apt-get update && apt-get install -y python3 python3-pip
|
||
|
|
||
|
# Set the working directory in the container
|
||
|
WORKDIR /app
|
||
|
|
||
|
# Copy the dependencies file to the working directory
|
||
|
COPY requirements.txt .
|
||
|
|
||
|
# Install any dependencies
|
||
|
RUN pip3 install -r requirements.txt
|
||
|
|
||
|
# Copy the content of the local src directory to the working directory in the container
|
||
|
COPY . .
|