pup-py commited on
Commit
deff07e
·
1 Parent(s): 0a2e6a1

move pixi install to dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -26,8 +26,10 @@ CMD ["bash"]
26
 
27
 
28
  FROM base
 
 
29
  RUN $PUP
30
- RUN ls -la && pup which && cat .bashrc
31
  RUN pup py3.11
32
 
33
  EXPOSE 7860
 
26
 
27
 
28
  FROM base
29
+ RUN export SHELL=bash && \
30
+ curl -fsSL https://pixi.sh/install.sh | bash
31
  RUN $PUP
32
+ RUN ls -la && pup which && cat .bashrc && echo $PATH
33
  RUN pup py3.11
34
 
35
  EXPOSE 7860