Fix Dockerfile COPY line

The destination needs to have a trailing slash if it's a directory in
older versions of docker, this is fixed

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2025-06-30 10:05:26 -07:00
parent 20e287540e
commit f795fe37c8

View File

@@ -2,6 +2,6 @@ FROM "python:3.13"
STOPSIGNAL SIGINT STOPSIGNAL SIGINT
RUN mkdir /app RUN mkdir /app
WORKDIR /app WORKDIR /app
COPY ./pyproject.toml ./uv.lock . COPY ./pyproject.toml ./uv.lock ./
RUN pip3 install uv RUN pip3 install uv
CMD uv run --no-group dev python3 -m omnibot CMD uv run --no-group dev python3 -m omnibot