From 062a31502fe0973ec16112772a6dde4a50691c97 Mon Sep 17 00:00:00 2001 From: Kevin Whitaker Date: Sat, 3 Jan 2026 11:58:30 -0500 Subject: [PATCH] don't use code to copy from docker context --- Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index b619313..2978f33 100644 --- a/Dockerfile +++ b/Dockerfile @@ -60,20 +60,16 @@ RUN sed -i '22a #include ' ./src/Util.h \ RUN rm -rf /tmp/RALibretro # Install frontend dependencies -COPY frontend/package.json /app/code/frontend/ WORKDIR /app/code/frontend RUN npm install +WORKDIR /app/code/ # Install uv for the non-root user COPY --from=ghcr.io/astral-sh/uv:0.7.19 /uv /uvx /usr/local/bin/ # Install Python RUN uv python install 3.13 - -# Copy project files (including pyproject.toml and uv.lock) -COPY pyproject.toml uv.lock* .python-version /app/code/ - # Install Python dependencies RUN uv sync --all-extras