FOIA_Doc_Search / Dockerfile.hf
GodsDevProject's picture
Upload 29 files
0f4b74d verified
raw
history blame contribute delete
122 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "app.py"]