FROM python:3-alpine RUN apk add build-base WORKDIR /var/www/app COPY requirements.txt ./ RUN pip install --no-cache-dir -r requirements.txt COPY . . WORKDIR /var/www/app/src CMD ["gunicorn", "wsgi:app"]