model-viewer/Dockerfile
Juanjo Gutiérrez df5b0b4400
All checks were successful
continuous-integration/drone/push Build is passing
Add CI and related fixes (#1)
Reviewed-on: #1
Co-authored-by: Juanjo Gutiérrez <juanjo@gutierrezdequevedo.com>
Co-committed-by: Juanjo Gutiérrez <juanjo@gutierrezdequevedo.com>
2026-01-30 12:56:01 +01:00

10 lines
202 B
Docker

FROM python:3.14-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8000
CMD ["python", "-m", "gunicorn", "app:app", "--access-logfile", "-", "-b", "0.0.0.0:8000"]