Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ commands:
jobs:
prep_env:
docker:
- image: tlaurion/heads-dev-env:v0.2.5
- image: tlaurion/heads-dev-env@sha256:50a9110cdfc6a74a383169d7c624139c3b3e05567b87203498118a8a33dd79f1 # v0.2.5
resource_class: large
working_directory: ~/heads
steps:
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:

build_and_persist:
docker:
- image: tlaurion/heads-dev-env:v0.2.5
- image: tlaurion/heads-dev-env@sha256:50a9110cdfc6a74a383169d7c624139c3b3e05567b87203498118a8a33dd79f1 # v0.2.5
resource_class: large
working_directory: ~/heads
parameters:
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:

build:
docker:
- image: tlaurion/heads-dev-env:v0.2.5
- image: tlaurion/heads-dev-env@sha256:50a9110cdfc6a74a383169d7c624139c3b3e05567b87203498118a8a33dd79f1 # v0.2.5
resource_class: large
working_directory: ~/heads
parameters:
Expand All @@ -171,7 +171,7 @@ jobs:

save_cache:
docker:
- image: tlaurion/heads-dev-env:v0.2.5
- image: tlaurion/heads-dev-env@sha256:50a9110cdfc6a74a383169d7c624139c3b3e05567b87203498118a8a33dd79f1 # v0.2.5
resource_class: large
working_directory: ~/heads
steps:
Expand Down
2 changes: 1 addition & 1 deletion docker_repro.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# Extract the Docker image version from the CircleCI config file
DOCKER_IMAGE=$(grep -oP '^\s*-?\s*image:\s*\K(tlaurion/heads-dev-env:[^\s]+)' .circleci/config.yml | head -n 1)
DOCKER_IMAGE=$(grep -oP '^\s*-?\s*image:\s*\K(tlaurion/heads-dev-env@[^\s]+)' .circleci/config.yml | head -n 1)

# Check if the Docker image was found
if [ -z "$DOCKER_IMAGE" ]; then
Expand Down