Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
commit that corresponds to last 2.3.5 build for 11.4.3
  • Loading branch information
maryapp authored and stes committed Aug 25, 2023
commit 6cd026ef1f08fc418eb7e6e8c3989444beda0416
2 changes: 1 addition & 1 deletion docker/Dockerfile.core
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG CUDA_VERSION
ARG DEEPLABCUT_VERSION
FROM deeplabcut/deeplabcut:${DEEPLABCUT_VERSION}-base-cuda${CUDA_VERSION}
FROM deeplabcut/deeplabcut:${DEEPLABCUT_VERSION}-base-cuda${CUDA_VERSION}-latest

ENV DLClight True

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.gui
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG CUDA_VERSION
ARG DEEPLABCUT_VERSION

FROM deeplabcut/deeplabcut:${DEEPLABCUT_VERSION}-base-cuda${CUDA_VERSION}
FROM deeplabcut/deeplabcut:${DEEPLABCUT_VERSION}-base-cuda${CUDA_VERSION}-latest

RUN DEBIAN_FRONTEND=noninteractive apt-get update -yy \
&& apt-get install -yy --no-install-recommends libgtk-3-dev python3-wxgtk4.0 locales \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.jupyter
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG CUDA_VERSION
ARG DEEPLABCUT_VERSION
FROM deeplabcut/deeplabcut:${DEEPLABCUT_VERSION}-core-cuda${CUDA_VERSION}
FROM deeplabcut/deeplabcut:${DEEPLABCUT_VERSION}-core-cuda${CUDA_VERSION}-latest

RUN pip3 install --no-cache-dir \
notebook==6.4.12 \
Expand Down
6 changes: 3 additions & 3 deletions docker/Dockerfile.test
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG CUDA_VERSION=11.4.0-cudnn8-runtime-ubuntu20.04
ARG DEEPLABCUT_VERSION=2.2.1.1
FROM deeplabcut/deeplabcut:${DEEPLABCUT_VERSION}-core-cuda${CUDA_VERSION}
ARG CUDA_VERSION
ARG DEEPLABCUT_VERSION
FROM deeplabcut/deeplabcut:${DEEPLABCUT_VERSION}-core-cuda${CUDA_VERSION}-latest

RUN mkdir test/
WORKDIR test
Expand Down
5 changes: 2 additions & 3 deletions docker/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,8 @@ for arg in "$@"; do
iterate_build_matrix push |
grep -v '\-test\-' |
tr '\n' '\0' |
xargs -I@ -0 bash -c "echo docker push @-latest; \
docker tag @ @-latest; \
docker push @-latest; \
xargs -I@ -0 bash -c "echo docker push @; \
docker push @; \
docker image rm @ |& grep -v 'No such image'"
;;
*)
Expand Down