13 lines
368 B
Docker
13 lines
368 B
Docker
FROM ubuntu:noble
|
|
|
|
ENV PATH="/root/.local/bin:$PATH"
|
|
ENV VIRTUAL_ENV="/opt/venv"
|
|
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
|
|
|
RUN apt-get update && apt-get install -y git curl
|
|
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
RUN uv python install 3.13
|
|
RUN uv venv $VIRTUAL_ENV
|
|
RUN uv pip install hatch
|
|
RUN curl https://i.wayl.one/casey/just | bash && mv just /usr/local/bin
|
|
|