mirror of
https://github.com/langchain-ai/opengpts.git
synced 2026-07-01 18:23:41 -04:00
33 lines
948 B
Docker
33 lines
948 B
Docker
# Backend Dockerfile
|
|
FROM python:3.11
|
|
|
|
ARG TARGETOS
|
|
ARG TARGETARCH
|
|
ARG TARGETVARIANT
|
|
|
|
# Install system dependencies
|
|
RUN apt-get update && rm -rf /var/lib/apt/lists/*
|
|
RUN wget -O golang-migrate.deb https://github.com/golang-migrate/migrate/releases/download/v4.17.0/migrate.${TARGETOS}-${TARGETARCH}${TARGETVARIANT}.deb \
|
|
&& dpkg -i golang-migrate.deb \
|
|
&& rm golang-migrate.deb
|
|
|
|
# Install Poetry
|
|
RUN pip install poetry
|
|
|
|
# Set the working directory
|
|
WORKDIR /backend
|
|
|
|
# Copy only dependencies
|
|
COPY pyproject.toml poetry.lock* ./
|
|
|
|
# Install all dependencies
|
|
RUN poetry config virtualenvs.create false \
|
|
&& poetry install --no-interaction --no-ansi
|
|
|
|
# Copy the rest of application code
|
|
COPY . .
|
|
|
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --start-interval=1s --retries=3 CMD [ "curl", "-f", "http://localhost:8000/health" ]
|
|
|
|
ENTRYPOINT [ "uvicorn", "app.server:app", "--host", "0.0.0.0", "--log-config", "log_config.json" ]
|