Skip to content

Commit 3115aea

Browse files
committed
Use release version 6.1 base image
1 parent 74a994e commit 3115aea

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.gitlab.com/finestructure/spi-base:46fc194706b255239d764c87f05f825ad9f98303
1+
FROM registry.gitlab.com/finestructure/spi-base:906f67cb3a6b3a73df5585657ad77682a03010be
22

33
# Install SPM build dependencies
44
RUN apt-get update && apt-get install -y curl git make unzip \

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
name: Test
3030
runs-on: ubuntu-latest
3131
container:
32-
image: registry.gitlab.com/finestructure/spi-base:46fc194706b255239d764c87f05f825ad9f98303
32+
image: registry.gitlab.com/finestructure/spi-base:906f67cb3a6b3a73df5585657ad77682a03010be
3333
options: --privileged
3434
steps:
3535
- name: GH Runner bug workaround
@@ -137,7 +137,7 @@ jobs:
137137
name: Release build
138138
runs-on: ubuntu-latest
139139
container:
140-
image: registry.gitlab.com/finestructure/spi-base:46fc194706b255239d764c87f05f825ad9f98303
140+
image: registry.gitlab.com/finestructure/spi-base:906f67cb3a6b3a73df5585657ad77682a03010be
141141
options: --privileged
142142
steps:
143143
- name: GH Runner bug workaround

.github/workflows/query-performance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
continue-on-error: true
3030
container:
31-
image: registry.gitlab.com/finestructure/spi-base:46fc194706b255239d764c87f05f825ad9f98303
31+
image: registry.gitlab.com/finestructure/spi-base:906f67cb3a6b3a73df5585657ad77682a03010be
3232
steps:
3333
- name: Checkout code
3434
uses: actions/checkout@v4

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# ================================
1919
# Build image
2020
# ================================
21-
FROM registry.gitlab.com/finestructure/spi-base:46fc194706b255239d764c87f05f825ad9f98303 as build
21+
FROM registry.gitlab.com/finestructure/spi-base:906f67cb3a6b3a73df5585657ad77682a03010be as build
2222

2323
# Set up a build area
2424
WORKDIR /build
@@ -61,7 +61,7 @@ RUN [ -d /build/Resources ] && { mv /build/Resources ./Resources && chmod -R a-w
6161
# ================================
6262
# Run image
6363
# ================================
64-
FROM registry.gitlab.com/finestructure/spi-base:46fc194706b255239d764c87f05f825ad9f98303
64+
FROM registry.gitlab.com/finestructure/spi-base:906f67cb3a6b3a73df5585657ad77682a03010be
6565

6666
# NB sas 2022-09-23: We're not using a dedicated `vapor` user to run the executable, because it
6767
# makes managing the data in the checkouts volume difficult. See

LOCAL_DEVELOPMENT_SETUP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ The trickiest part of this is to ensure the test or app container can connect to
236236
So, in order to run the tests in a Linux container run:
237237

238238
```
239-
docker run --rm -v "$PWD":/host -w /host --add-host=host.docker.internal:host-gateway registry.gitlab.com/finestructure/spi-base:46fc194706b255239d764c87f05f825ad9f98303 swift test
239+
docker run --rm -v "$PWD":/host -w /host --add-host=host.docker.internal:host-gateway registry.gitlab.com/finestructure/spi-base:906f67cb3a6b3a73df5585657ad77682a03010be swift test
240240
```
241241

242242
Make sure you use the most recent `spi-base` image. You can find the latest image name in the `test-docker` target, which also provides a convenient way to run all all tests in a docker container.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ test-docker:
6969
@# run tests inside a docker container
7070
docker run --rm -v "$(PWD)":/host -w /host \
7171
--add-host=host.docker.internal:host-gateway \
72-
registry.gitlab.com/finestructure/spi-base:46fc194706b255239d764c87f05f825ad9f98303 \
72+
registry.gitlab.com/finestructure/spi-base:906f67cb3a6b3a73df5585657ad77682a03010be \
7373
make test
7474

7575
test-e2e: db-reset reconcile ingest analyze

0 commit comments

Comments
 (0)