snackshell's picture
Update Dockerfile
7ca4953 verified
raw
history blame
341 Bytes
FROM python:3.9-slim
# Install Ethiopian fonts and dependencies
RUN apt-get update && apt-get install -y \
fonts-noto \
fonts-noto-extra \
fonts-noto-cjk \
fonts-noto-ethiopic \
wget \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "app.py"]