Verified Commit 9150d896 authored by Jakob Moser's avatar Jakob Moser
Browse files

Change PATH in Docker

parent 8df74b71
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
FROM python:3.13
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/

# We will use /app as our main directory within the Docker container
WORKDIR /app
# Add /root/.local/bin/ to PATH, which is where UV puts its tools
ENV PATH=$PATH:/root/.local/bin/

RUN apt-get update \
    && apt-get install -y \
@@ -14,4 +14,4 @@ RUN apt-get update \
# Install productive Coliverter
RUN uv tool install git+https://gitlab.cl.uni-heidelberg.de/fachschaft/coliverter.git

ENTRYPOINT ["/root/.local/bin/coliverter"]
ENTRYPOINT ["coliverter"]