From 4bb9df8983a8a4b3dd39469a8c8e40d332425c80 Mon Sep 17 00:00:00 2001 From: Vanessa Sochat Date: Sat, 10 Aug 2019 08:25:37 -0400 Subject: [PATCH] adding missing dockerfile dependency Signed-off-by: Vanessa Sochat --- utils/multires/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/multires/Dockerfile b/utils/multires/Dockerfile index 383eb7b..86a3024 100644 --- a/utils/multires/Dockerfile +++ b/utils/multires/Dockerfile @@ -5,7 +5,7 @@ FROM ubuntu:18.04 ENV DEBIAN_FRONTEND noninteractive RUN apt-get update && \ - apt-get install -y python3 python3-pil hugin-tools + apt-get install -y python3 python3-dev python3-pil hugin-tools ADD generate.py /generate.py ENTRYPOINT ["python3", "/generate.py"]