Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compile samples instead of hard code them in API server #76

Merged
merged 15 commits into from
Nov 6, 2018
Prev Previous commit
Next Next commit
update command
  • Loading branch information
IronPan committed Nov 6, 2018
commit 05b5b21658f66f5267625364bfd86c9ec8d3b310
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ FROM python:3.5.0-slim as compiler
RUN pip install https://storage.googleapis.com/ml-pipeline/release/0.0.26/kfp-0.0.26.tar.gz --upgrade
WORKDIR /samples
COPY ./samples .
RUN find . -maxdepth 2 -name "*.py" -exec dsk-compile --py {} --output {}.tar.gz \;
RUN find . -maxdepth 2 -name "*.py" -exec dsl-compile --py {} --output {}.tar.gz \;

FROM alpine

Expand Down