thery.ai / Dockerfile
Testys's picture
Updating Dockerfile
d249c76 verified
raw
history blame contribute delete
583 Bytes
FROM python:3.11-slim
USER root
RUN apt-get update && \
apt-get install -y redis-server dos2unix && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH" \
PYTHONUNBUFFERED=1
WORKDIR /app
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY --chown=user . /app
COPY --chown=user entrypoint.sh /app/entrypoint.sh
RUN dos2unix /app/entrypoint.sh && \
chmod +x /app/entrypoint.sh
EXPOSE 7860
CMD ["/app/entrypoint.sh"]