diff --git a/Dockerfile b/Dockerfile index 730a724..614addf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,8 +13,10 @@ ENV UV_COMPILE_BYTECODE=1 # Copy from the cache instead of linking since it's a mounted volume ENV UV_LINK_MODE=copy -ADD . /app +COPY . /app RUN uv sync --frozen --no-dev # Place executables in the environment at the front of the path ENV PATH="/app/.venv/bin:$PATH" + +ENTRYPOINT []