Spaces:
Running
Running
File size: 429 Bytes
d2e8024 c50f4cd d2e8024 c50f4cd d7d2163 c50f4cd d2e8024 c50f4cd d2e8024 c50f4cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
FROM python:3.9-slim
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
COPY ./requirements.txt $HOME/app/requirements.txt
USER root
RUN apt-get update && \
apt-get install espeak && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
USER user
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "app.py"]
|