FROM python:latest WORKDIR /app COPY . /app RUN pip install -r requirements.txt EXPOSE 8000 CMD ["python", "main.py"]