AI-detector / Dockerfile
Hiddetbosch's picture
Upload Dockerfile
66e9e46 verified
raw
history blame contribute delete
423 Bytes
FROM python:3.9-slim
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# Create a non-root user required by Hugging Face Spaces
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
# Expose the required port
EXPOSE 7860
CMD ["python", "app.py"]