wip
This commit is contained in:
commit
d7800f4d82
12 changed files with 378 additions and 0 deletions
13
container/Containerfile
Normal file
13
container/Containerfile
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue