Files
omnibot22/Dockerfile
Alek Ratzloff f795fe37c8 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>
2025-06-30 10:05:26 -07:00

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