File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -21,18 +21,23 @@ RUN echo "GITVERSION: "$GITVERSION
2121RUN echo "GITSHA: " $GITSHA
2222RUN echo "GITDATE: " $GITDATE
2323
24- # Switch to root
25- USER root
26-
2724# Installing precomputed python packages
2825RUN uv pip install pillow
2926
30- # Install PICAchooser
27+ # copy PICAchooser into container
3128COPY . /src/picachooser
3229RUN echo $GITVERSION > /src/picachooser/VERSION
30+
31+ # init and install picachooser
32+ RUN uv pip install --upgrade pip
3333RUN cd /src/picachooser && \
3434 uv pip install . && \
35- rm -rf /src/picachooser/build /src/picachooser/dist
35+ RUN chmod -R a+r /src/picachooser
36+
37+ # install versioneer
38+ RUN cd /src/rapidtide && \
39+ versioneer install --no-vendor && \
40+ rm -rf /src/rapidtide/build /src/picachooser/dist
3641
3742# clean up
3843RUN pip cache purge
You can’t perform that action at this time.
0 commit comments