Skip to content
Merged
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
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,14 @@ RUN git clone https://github.com/google/differential-privacy.git && \
WORKDIR /root/PyDP
COPY . /root/PyDP

RUN cp -r /tmp/third_party/* /root/PyDP/third_party
RUN rm -rf third_party/differential-privacy/ third_party/pybind11_bazel/ && \
cp -r /tmp/third_party/* /root/PyDP/third_party


RUN \
bash build_PyDP.sh && \
python3 setup.py sdist bdist_wheel && \
pip install dist/pydp-0.1.0-py2.py3-none-any.whl && \
pip install dist/*.whl && \
pip install -r requirements_dev.txt

# Define default command.
Expand Down