Spaces:
Running
Running
File size: 1,760 Bytes
302a501 fe93dd0 302a501 fe93dd0 302a501 fe93dd0 302a501 fe93dd0 302a501 fe93dd0 302a501 fe93dd0 302a501 fe93dd0 302a501 986f510 fe93dd0 302a501 |
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
# FROM python:3.10-slim
#
# WORKDIR /app
#
# COPY . /app
#
# RUN chmod -R 777 /app
#
# RUN apt-get update && \
# apt-get upgrade -y && \
# apt-get install -y \
# build-essential \
# git \
# cmake \
# poppler-utils \
# ffmpeg \
# libsm6 \
# libxext6 && \
# apt-get clean && \
# rm -rf /var/lib/apt/lists/*
#
# RUN pip install --no-cache-dir nltk && \
# mkdir -p /app/nltk_data && \
# chmod -R 777 /app/nltk_data && \
# python -m nltk.downloader -d /app/nltk_data all
#
# RUN pip install --no-cache-dir --upgrade pip && \
# pip install --no-cache-dir -r requirements.txt
#
# EXPOSE 8000
#
# CMD ["python", "app.py"]
FROM python:3.10-slim
# Create a non-root user and set up environment
RUN useradd -m -u 1000 appuser
ENV HOME=/home/appuser
ENV PATH=$HOME/.local/bin:$PATH
# Switch to the app user's home directory for proper permissions
WORKDIR /app
# Copy app files
COPY . /app
# Adjust ownership for the non-root user
RUN chown -R appuser:appuser /app
# Install system dependencies
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y \
build-essential \
git \
cmake \
poppler-utils \
ffmpeg \
libsm6 \
libxext6 && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Switch to non-root user
USER appuser
# Install Python dependencies
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
# Set NLTK data directory and download data
ENV NLTK_DATA=/app/nltk_data
RUN mkdir -p $NLTK_DATA && \
python -m nltk.downloader -d $NLTK_DATA all
# Expose the application port
EXPOSE 7860
# Start the application
CMD ["python", "app.py"]
|