37 lines
884 B
Docker
37 lines
884 B
Docker
|
|
# Use an official Python runtime as a parent image
|
||
|
|
FROM python:3.10-slim-buster
|
||
|
|
|
||
|
|
# Set the working directory in the container
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
# Install system dependencies
|
||
|
|
RUN apt-get update && apt-get install -y \
|
||
|
|
build-essential \
|
||
|
|
libpq-dev \
|
||
|
|
libmagic-dev \
|
||
|
|
libjpeg-dev \
|
||
|
|
zlib1g-dev \
|
||
|
|
libwebp-dev \
|
||
|
|
tesseract-ocr \
|
||
|
|
ffmpeg \
|
||
|
|
git \
|
||
|
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|
|
||
|
|
# Copy pyproject.toml and poetry.lock to the working directory
|
||
|
|
COPY pyproject.toml poetry.lock* ./
|
||
|
|
|
||
|
|
# Install poetry
|
||
|
|
RUN pip install poetry
|
||
|
|
|
||
|
|
# Install project dependencies
|
||
|
|
RUN poetry install --no-root --no-dev
|
||
|
|
|
||
|
|
# Copy the rest of the application code
|
||
|
|
COPY . .
|
||
|
|
|
||
|
|
# Expose port 8000 for the FastAPI application
|
||
|
|
EXPOSE 8000
|
||
|
|
|
||
|
|
# Command to run the application (will be overridden by docker-compose)
|
||
|
|
CMD ["poetry", "run", "uvicorn", "rbox.main:app", "--host", "0.0.0.0", "--port", "8000"]
|