From 1035929f8c826b2f9c66934ac34296987839e059 Mon Sep 17 00:00:00 2001 From: Norman Hooper Date: Wed, 23 Nov 2022 17:00:02 +0000 Subject: [PATCH] Run apt-get update otherwise unzip will 404 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7bb98b8b..66916d45 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM openhie/package-base:0.1.0 # Add default instant OpenHIE packages ADD . . -RUN apt-get install -y unzip +RUN apt-get update && apt-get install -y unzip # install aws cli - for credential fetching RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"