31 lines
849 B
Docker
31 lines
849 B
Docker
# Use the official Python image from the Docker Hub
|
|
FROM python:3.9-slim
|
|
|
|
# Set the working directory in the container
|
|
WORKDIR /app
|
|
|
|
# Copy the requirements file into the container
|
|
COPY requirements.txt .
|
|
|
|
# Install the dependencies
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Install gunicorn
|
|
RUN pip install gunicorn
|
|
|
|
# Copy the FastAPI project files into the container
|
|
COPY src/ .
|
|
COPY entrypoint.sh .
|
|
|
|
# Copy the patterns.txt file into the container
|
|
COPY config/patterns.txt /config/patterns.txt
|
|
|
|
# Install binary dependencies
|
|
RUN apt-get update && apt-get install -y wget ffmpeg
|
|
RUN wget -O /usr/local/bin/czkawka https://github.com/qarmin/czkawka/releases/download/8.0.0/linux_czkawka_cli
|
|
RUN chmod +x /usr/local/bin/czkawka
|
|
|
|
# Expose the port the app runs on
|
|
EXPOSE 8000
|
|
|
|
ENTRYPOINT ["./entrypoint.sh"] |