Skip to content

Commit

Permalink
Update to use canto-base:v19
Browse files Browse the repository at this point in the history
This is a squashed version of canto-base:v18

Refs #2870
  • Loading branch information
kimrutherford committed Jan 12, 2025
1 parent 06ce862 commit ba73fbc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
- docker

before_install:
- docker pull pombase/canto-base:v18
- docker pull pombase/canto-base:v19

# this runs "make test" inside a Docker container
script: ./etc/docker-run-tests.sh
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM pombase/canto-base:v18
FROM pombase/canto-base:v19
MAINTAINER Kim Rutherford <[email protected]>

COPY . canto/
Expand Down
2 changes: 1 addition & 1 deletion etc/Dockerfile-base
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# build with: docker build --squash -f etc/Dockerfile-base -t=pombase/canto-base:v18 .
# build with: docker build --squash -f etc/Dockerfile-base -t=pombase/canto-base:v19 .

FROM bitnami/minideb:bookworm
MAINTAINER Kim Rutherford <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion etc/docker-run-tests.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh -

docker run --rm --net="host" --mount type=bind,source=$(pwd)/,target=/canto -w=/canto \
pombase/canto-base:v18 /bin/bash -c "cd /canto && perl Makefile.PL && make test"
pombase/canto-base:v19 /bin/bash -c "cd /canto && perl Makefile.PL && make test"
2 changes: 1 addition & 1 deletion script/canto_docker
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ then
DOCKER_COMMAND="podman"
fi

CANTO_DOCKER_RUN_ARGS="$EXTRA_ARGS --rm $INTERACTIVE_ARGS --mount type=bind,source=$(pwd)/logs,target=/logs --mount type=bind,source=$(pwd)/data,target=/data --mount type=bind,source=$(pwd)/import_export,target=/import_export --mount type=bind,source=$(pwd)/canto,target=/canto -w=/canto docker.io/pombase/canto-base:v18"
CANTO_DOCKER_RUN_ARGS="$EXTRA_ARGS --rm $INTERACTIVE_ARGS --mount type=bind,source=$(pwd)/logs,target=/logs --mount type=bind,source=$(pwd)/data,target=/data --mount type=bind,source=$(pwd)/import_export,target=/import_export --mount type=bind,source=$(pwd)/canto,target=/canto -w=/canto docker.io/pombase/canto-base:v19"

cd canto

Expand Down
2 changes: 1 addition & 1 deletion script/canto_start_docker
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ then
fi
fi

CANTO_DOCKER_RUN_ARGS="$EXTRA_ARGS -i $TTY_OPT --rm $DEBUG --mount type=bind,source=$(pwd)/logs,target=/logs --mount type=bind,source=$(pwd)/data,target=/data --mount type=bind,source=$(pwd)/import_export,target=/import_export --mount type=bind,source=$(pwd)/canto,target=/canto -w=/canto pombase/canto-base:v18"
CANTO_DOCKER_RUN_ARGS="$EXTRA_ARGS -i $TTY_OPT --rm $DEBUG --mount type=bind,source=$(pwd)/logs,target=/logs --mount type=bind,source=$(pwd)/data,target=/data --mount type=bind,source=$(pwd)/import_export,target=/import_export --mount type=bind,source=$(pwd)/canto,target=/canto -w=/canto pombase/canto-base:v19"

cd canto

Expand Down

0 comments on commit ba73fbc

Please sign in to comment.