Alhdrawi's picture
Create Dockerfile
922cf2f verified
raw
history blame contribute delete
177 Bytes
FROM python:3.10-slim
RUN apt-get update && apt-get install -y libreoffice
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY app.py .
CMD ["python", "app.py"]