Files
lai_hong d870d0ecf8
Build, Push and Deploy / build (push) Successful in 6s
Build, Push and Deploy / deploy (push) Successful in 14s
fix(export): make AI converter build offline
2026-09-13 13:12:07 +08:00

15 lines
185 B
Docker

# syntax=docker/dockerfile:1
FROM python:3.12-slim
WORKDIR /app
RUN useradd --system --no-create-home converter
COPY app.py ./
USER converter
EXPOSE 8090
CMD ["python", "app.py"]