From f1ee5f58f7ed97ca0e1fe123b7dc3c1c6fffa12f Mon Sep 17 00:00:00 2001 From: GeorgeC Date: Tue, 7 Jan 2025 16:10:46 -0500 Subject: [PATCH] Update Dockerfiles to use LATEST tag for base image Both Dockerfiles now reference the LATEST tag instead of a specific commit for the `hms-dbmi/pic-sure-api` image. This ensures the build process uses the most up-to-date base image available. --- docker/pic-sure-hpds-etl/Dockerfile | 2 +- docker/pic-sure-hpds/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/pic-sure-hpds-etl/Dockerfile b/docker/pic-sure-hpds-etl/Dockerfile index 980c2aa3..d537bfff 100644 --- a/docker/pic-sure-hpds-etl/Dockerfile +++ b/docker/pic-sure-hpds-etl/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Pull the dependencies from the existing image -FROM hms-dbmi/pic-sure-api AS dependencies +FROM hms-dbmi/pic-sure-api:LATEST AS dependencies # Stage 2: Build the new project FROM maven:3.9.4-amazoncorretto-21 AS build diff --git a/docker/pic-sure-hpds/Dockerfile b/docker/pic-sure-hpds/Dockerfile index af9a7ce5..7eef7375 100644 --- a/docker/pic-sure-hpds/Dockerfile +++ b/docker/pic-sure-hpds/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Pull the dependencies from the existing image -FROM hms-dbmi/pic-sure-api AS dependencies +FROM hms-dbmi/pic-sure-api:LATEST AS dependencies # Stage 2: Build the new project FROM maven:3.9.4-amazoncorretto-21 AS build