File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 6060 --provenance=false \
6161 --sbom=false \
6262 --output type=registry,push=true \
63- .
63+ ./python/base
6464
6565 build-and-push-python :
6666 machine :
9696 --provenance=false \
9797 --sbom=false \
9898 --output type=registry,push=true \
99- .
99+ ./python/python
100100
101101 build-and-push-python-datascience :
102102 machine :
@@ -166,7 +166,7 @@ jobs:
166166 --provenance=false \
167167 --sbom=false \
168168 --output type=registry,push=true \
169- .
169+ ./python/conda
170170
171171 build-and-push-ir :
172172 executor : docker/docker
@@ -238,7 +238,7 @@ jobs:
238238 --provenance=false \
239239 --sbom=false \
240240 --output type=registry,push=true \
241- .
241+ ./gpu
242242
243243python-versions : &python-versions
244244 - " 3.8.19"
Original file line number Diff line number Diff line change @@ -23,17 +23,17 @@ RUN apt-get update && apt-get -y dist-upgrade \
2323 gnupg2 \
2424 && rm -rf /var/lib/apt/lists/*
2525
26- # replace python version (optional) and
26+ # replace python version (optional) and
2727# create the virtual environment in the home directory in the Dockerfile
2828# for performance improvement.
2929ARG PYTHON_VER
3030ARG TF_VERSION
31- ADD ./gpu/ setup.python.sh /tmp/setup.python.sh
31+ ADD ./setup.python.sh /tmp/setup.python.sh
3232RUN bash /tmp/setup.python.sh ${PYTHON_VER} ${TF_VERSION}; rm -v /tmp/setup.python.sh
3333
3434# setup cuda for tensorflow
3535ARG CUDA_IMAGE_TAG
36- ADD ./gpu/ setup.cuda.sh /tmp/setup.cuda.sh
36+ ADD ./setup.cuda.sh /tmp/setup.cuda.sh
3737RUN bash /tmp/setup.cuda.sh ${CUDA_IMAGE_TAG}; rm -v /tmp/setup.cuda.sh
3838
3939ENV DEEPNOTE_PYTHON_KERNEL_ONLY=true
You can’t perform that action at this time.
0 commit comments