Skip to content

Commit

Permalink
Update Dockerfiles to use LATEST tag for base image
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Gcolon021 committed Jan 7, 2025
1 parent 53d3ac4 commit f1ee5f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/pic-sure-hpds-etl/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion docker/pic-sure-hpds/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit f1ee5f5

Please sign in to comment.