From 50309d9dc198e7d1178709946ad590fb38272c93 Mon Sep 17 00:00:00 2001 From: Gianluca Gabrielli Date: Thu, 20 Aug 2020 14:06:49 +0200 Subject: [PATCH] Adding missing building dependecies --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3f23b36..3540e91 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,8 @@ FROM python:3-alpine WORKDIR /usr/src/mha COPY requirements.txt ./ -RUN pip install --no-cache-dir -r requirements.txt +RUN apk add --no-cache gcc musl-dev && \ + pip install --no-cache-dir -r requirements.txt COPY mha/ .