diff --git a/docker/Dockerfile b/docker/Dockerfile index 61444f5..39710ad 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -10,6 +10,12 @@ RUN pip install --upgrade pip WORKDIR /app COPY ./requirements.txt /app + +RUN apt-get update && apt-get install -y \ + pkg-config \ + libhdf5-dev \ + gcc \ + && rm -rf /var/lib/apt/lists/* RUN pip install -r /app/requirements.txt # Hack to get around tensorflow-io issue - https://github.com/tensorflow/io/issues/1755 @@ -19,4 +25,4 @@ RUN pip uninstall -y tensorflow-io COPY /notebooks/. /app/notebooks COPY /scripts/. /app/scripts -ENV PYTHONPATH="${PYTHONPATH}:/app" \ No newline at end of file +ENV PYTHONPATH="${PYTHONPATH}:/app"