Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -19,4 +25,4 @@ RUN pip uninstall -y tensorflow-io
COPY /notebooks/. /app/notebooks
COPY /scripts/. /app/scripts

ENV PYTHONPATH="${PYTHONPATH}:/app"
ENV PYTHONPATH="${PYTHONPATH}:/app"