myconsicouness / Dockerfile
adityasugandhi
requirements.txt
30343f7
raw
history blame
291 Bytes
# Use an existing Docker image as a base
FROM python:3.9
# Set the working directory inside the container
WORKDIR /app
# Copy the requirements file into the container at /app
COPY requirements.txt /requirements
# Install the dependencies
RUN pip install --no-cache-dir -r requirements.txt