FROM python:3.12-alpine WORKDIR /app RUN pip install --no-cache-dir segno==1.6.6 COPY app.py /app/app.py EXPOSE 8081 CMD ["python", "/app/app.py"]