PUMS-TOOLKIT / Dockerfile
ndmhung6's picture
Fix: simplify Dockerfile, force LF line endings, install deps at runtime
52cf714
Raw
History Blame Contribute Delete
211 Bytes
FROM python:3.11
WORKDIR /app
COPY . .
RUN mkdir -p uploads
EXPOSE 7860
CMD bash -c "pip install --no-cache-dir -r requirements.txt && python -c 'from app import app; app.run(host=\"0.0.0.0\", port=7860)'"