From 121e395d5f75fb076cb9f05dbe659b079176f957 Mon Sep 17 00:00:00 2001 From: Grant Duncklee Date: Thu, 6 Jun 2024 12:52:08 -0400 Subject: [PATCH] feat: source from ghcr (#176) In an effort to improve our security posture, reference hardened image. ## Changes - Changed FROM value in the Dockerfile to pull from hardened ghcr images. Co-authored-by: Grant Duncklee Co-authored-by: jcadam14 <41971533+jcadam14@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 625f090..6d87f4d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-alpine +FROM ghcr.io/cfpb/regtech/sbl/python-alpine:3.12 WORKDIR /usr/app