From 324c8589b52228d5487f0488f1ea70d6bb647bde Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 10 Dec 2024 14:46:18 +0800 Subject: [PATCH] fixup runtime image: use base commit tag --- .github/workflows/Dockerfile.runtime | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Dockerfile.runtime b/.github/workflows/Dockerfile.runtime index c600f34..5c4fa28 100644 --- a/.github/workflows/Dockerfile.runtime +++ b/.github/workflows/Dockerfile.runtime @@ -1,10 +1,10 @@ -FROM ghcr.io/commercialhaskell/curator/base-build:latest as build-app +FROM ghcr.io/commercialhaskell/curator/base-build:commit-9e621eb31fddbd9590d9c8b84ed09c68c1cce337 as build-app RUN mkdir -p /artifacts/bin COPY . /src RUN stack install --stack-yaml /src/stack.yaml --local-bin-path /artifacts/bin -FROM ghcr.io/commercialhaskell/curator/base-run:latest +FROM ghcr.io/commercialhaskell/curator/base-run:commit-9e621eb31fddbd9590d9c8b84ed09c68c1cce337 RUN mkdir -p /app/db COPY --from=build-app /artifacts/bin/casa-curator /usr/local/bin/casa-curator