pup-py commited on
Commit
7ca89db
·
1 Parent(s): 14ea311
Files changed (1) hide show
  1. Dockerfile +3 -4
Dockerfile CHANGED
@@ -9,14 +9,13 @@ USER user
9
  ENV HOME=/home/user \
10
  PATH=/home/user/.local/bin:/home/user/.pixi/bin:$PATH
11
 
12
- # prep puppy
13
  RUN mkdir $HOME/puppy
14
- WORKDIR $HOME/puppy
15
- RUN curl -fsSL https://raw.githubusercontent.com/liquidcarbon/puppy/main/pup.sh | bash -s 3.12
16
  CMD ["bash"]
17
 
18
- # install and run
19
  FROM base AS puppy
 
 
20
  RUN . <(cat pup.sh | tail -1)
21
  RUN pup
22
 
 
9
  ENV HOME=/home/user \
10
  PATH=/home/user/.local/bin:/home/user/.pixi/bin:$PATH
11
 
 
12
  RUN mkdir $HOME/puppy
 
 
13
  CMD ["bash"]
14
 
15
+ # prep puppy
16
  FROM base AS puppy
17
+ WORKDIR $HOME/puppy
18
+ RUN curl -fsSL https://raw.githubusercontent.com/liquidcarbon/puppy/main/pup.sh | bash -s 3.12
19
  RUN . <(cat pup.sh | tail -1)
20
  RUN pup
21