Skip to content

Commit f178f49

Browse files
committed
fix: fix base Dockerfile
1 parent a03347c commit f178f49

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

Dockerfile

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,11 @@
1-
FROM ghcr.io/astral-sh/uv:python3.13-slim
1+
FROM ghcr.io/astral-sh/uv:python3.13-trixie-slim
22
# https://docs.astral.sh/uv/guides/integration/docker
33

4-
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
5-
6-
# COPY pyproject.toml /app/pyproject.toml
7-
# COPY src/expasy-agent/pyproject.toml /app/src/expasy-agent/pyproject.toml
8-
# COPY src/sparql-llm/pyproject.toml /app/src/sparql-llm/pyproject.toml
9-
# RUN uv sync
10-
114
WORKDIR /app
12-
135
COPY . /app/
146

15-
# WORKDIR /app/src/expasy-agent
16-
177
RUN uv sync --frozen --extra agent
188

199
ENV PYTHONUNBUFFERED='1'
20-
21-
# EXPOSE 80
22-
# ENTRYPOINT [ "sleep", "infinity" ]
10+
EXPOSE 80
2311
ENTRYPOINT ["uv", "run", "uvicorn", "src.sparql_llm.agent.main:app", "--host", "0.0.0.0", "--port", "80", "--workers", "6", "--log-config", "logging.yml"]

0 commit comments

Comments
 (0)