Spaces:
Running
Running
debian, symlink on PATH
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
FROM
|
2 |
|
3 |
RUN apt-get update \
|
4 |
&& apt-get install -y curl \
|
@@ -12,8 +12,8 @@ ENV HOME=/home/user \
|
|
12 |
RUN mkdir $HOME/puppy
|
13 |
WORKDIR $HOME/puppy
|
14 |
RUN curl -fsSL https://raw.githubusercontent.com/liquidcarbon/puppy/main/pup.sh | bash -s 3.12
|
|
|
15 |
RUN pixi add marimo
|
16 |
-
RUN . <(tail -1 pup.sh)
|
17 |
RUN pup
|
18 |
RUN pup fetch hf pandas
|
19 |
RUN pup list .
|
|
|
1 |
+
FROM debian:latest AS puppy
|
2 |
|
3 |
RUN apt-get update \
|
4 |
&& apt-get install -y curl \
|
|
|
12 |
RUN mkdir $HOME/puppy
|
13 |
WORKDIR $HOME/puppy
|
14 |
RUN curl -fsSL https://raw.githubusercontent.com/liquidcarbon/puppy/main/pup.sh | bash -s 3.12
|
15 |
+
RUN ln -s ./pup.py $HOME/.local/bin/pup
|
16 |
RUN pixi add marimo
|
|
|
17 |
RUN pup
|
18 |
RUN pup fetch hf pandas
|
19 |
RUN pup list .
|