| 123456789101112131415161718 |
- # Dockerfile
- FROM python:3.9-slim
- # Set environment variables
- ENV PYTHONDONTWRITEBYTECODE 1
- ENV PYTHONUNBUFFERED 1
- # Set working directory
- WORKDIR /code
- # Install dependencies
- COPY requirements.txt /code/
- RUN pip install --no-cache-dir -r requirements.txt
- # Copy project
- COPY ./recycle /code/
|