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>
8 lines
165 B
Docker
8 lines
165 B
Docker
FROM "python:3.13"
|
|
STOPSIGNAL SIGINT
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
COPY ./pyproject.toml ./uv.lock ./
|
|
RUN pip3 install uv
|
|
CMD uv run --no-group dev python3 -m omnibot
|