File size: 591 Bytes
2bb990a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | FROM python:3.11-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
espeak-ng \
curl \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*
RUN useradd -m -u 1000 hal
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY download_model.py .
RUN python download_model.py
COPY hal_prompt.py main.py ./
COPY static/ ./static/
COPY profile.md ./
RUN mkdir -p /app/data && chown -R hal:hal /app
USER hal
ENV HAL_DATA_DIR=/app/data
EXPOSE 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|