File size: 1,229 Bytes
e1e9fc5 84dd5e0 e1e9fc5 b3f1b81 a60bdcb b3f1b81 f34379e a742f3c 499fb9f 544f470 46af4ac e8c368f e1e9fc5 46af4ac e1e9fc5 |
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 |
# Use official Python image
FROM python:3.10-slim
# Set work directory
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
git \
&& rm -rf /var/lib/apt/lists/*
# Clone the repo
RUN git clone https://github.com/Aws-killer/ImageEditor.git .
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
# Copy the rest of the app (in case Docker context is local dev)
COPY . .
# Expose the FastAPI port
EXPOSE 7860
# Environment variables to control Python and caching behavior.
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
XDG_CACHE_HOME=/app/.cache \
HF_HOME=/app/.cache/huggingface \
PIP_ROOT_USER_ACTION=ignore
# Create a non-root user and set up directories with wide permissions.
RUN adduser --disabled-password --gecos '' appuser && \
mkdir -p /app/.cache/huggingface/hub && \
mkdir -p /app/.local && \
chown -R appuser:appuser /app && \
chmod -R 777 /app
RUN apt-get update && apt-get install -y libgl1-mesa-glx python3-opencv ffmpeg
RUN pip install spacy && python -m spacy download en_core_web_sm
RUN pip install wget
# Start the FastAPI app
USER appuser
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|