From 337cf6ee6598304197ee47e1e898501a3d04a265 Mon Sep 17 00:00:00 2001 From: Jinwoo Bae Date: Thu, 18 Aug 2022 14:49:42 +0900 Subject: [PATCH] Fix docker file build error --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 932bae3..c93d4c9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,7 @@ RUN apt-get -yqq update RUN apt-get -yqq install python3-pip python3-dev curl gnupg RUN curl -sL https://deb.nodesource.com/setup_10.x | bash RUN apt-get install -yq nodejs +RUN apt-get install -yq python3-markupsafe # copy our application code ADD flask-app /opt/flask-app