From 1a5ff80c0d011e85b22edba0cd1f9a12617bd017 Mon Sep 17 00:00:00 2001 From: Jon Aquino Date: Mon, 24 Jun 2024 13:33:38 -0700 Subject: [PATCH] Fix a couple of build errors --- frontend/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index e421d05..f394297 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,4 +1,4 @@ -FROM node:10.15.3-stretch +FROM node:10.16.3-buster # AWS cli tools RUN apt-get update && apt-get install -y \ @@ -6,6 +6,7 @@ RUN apt-get update && apt-get install -y \ python \ python-dev \ python-pip +RUN pip install PyYAML==5.3.1 RUN pip install awscli # Copy and install frontend requirements