Skip to content

Commit 5c11809

Browse files
authored
Merge pull request #4 from NicholasGoh/refactor/remove-unused-lock-files
refactor(hotfix): remove unused files
2 parents cd0d705 + bb6d26d commit 5c11809

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/api/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ghcr.io/astral-sh/uv:python3.13-bookworm
22

33
WORKDIR /app
44
COPY ./backend/api/uv.lock ./backend/api/pyproject.toml ./
5-
RUN uv sync --frozen
5+
RUN uv sync --frozen && rm ./uv.lock ./pyproject.toml
66
RUN apt-get update && apt-get install -y --no-install-recommends curl
77
COPY ./envs/backend.env /opt/.env
88
COPY ./backend/api /app/api

backend/mcp/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ghcr.io/astral-sh/uv:python3.13-bookworm
22

33
WORKDIR /app
44
COPY ./backend/mcp/uv.lock ./backend/mcp/pyproject.toml .
5-
RUN uv sync --frozen
5+
RUN uv sync --frozen && rm ./uv.lock ./pyproject.toml
66
RUN apt-get update && apt-get install -y --no-install-recommends \
77
curl && \
88
curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \

0 commit comments

Comments
 (0)