Spaces:
Sleeping
Sleeping
FROM python:3.9 | |
COPY . /usr/app/ | |
WORKDIR /usr/app/ | |
RUN pip install --no-cache-dir -r requirements.txt | |
#When you are building a docker image you want it to be light. | |
# This helps avoiding bloating the image with cached files | |
CMD main.py | |