-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Stream Directories and Files using Flyte (#1512)"
This reverts commit 98e74c2.
- Loading branch information
1 parent
3e708ad
commit 135673f
Showing
16 changed files
with
76 additions
and
380 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,21 +12,27 @@ MAINTAINER Flyte Team <[email protected]> | |
LABEL org.opencontainers.image.source https://github.com/flyteorg/flytekit | ||
|
||
WORKDIR /root | ||
ENV PYTHONPATH /root | ||
|
||
ARG VERSION | ||
ARG DOCKER_IMAGE | ||
|
||
RUN apt-get update && apt-get install build-essential vim -y | ||
|
||
COPY . /flytekit | ||
COPY . /code/flytekit | ||
WORKDIR /code/flytekit | ||
|
||
# Pod tasks should be exposed in the default image | ||
RUN pip install -e /flytekit | ||
RUN pip install -e /flytekit/plugins/flytekit-k8s-pod | ||
RUN pip install -e /flytekit/plugins/flytekit-deck-standard | ||
RUN pip install -e . | ||
RUN pip install -e plugins/flytekit-k8s-pod | ||
RUN pip install -e plugins/flytekit-deck-standard | ||
RUN pip install scikit-learn | ||
|
||
ENV PYTHONPATH "/flytekit:/flytekit/plugins/flytekit-k8s-pod:/flytekit/plugins/flytekit-deck-standard:" | ||
ENV PYTHONPATH "/code/flytekit:/code/flytekit/plugins/flytekit-k8s-pod:/code/flytekit/plugins/flytekit-deck-standard:" | ||
|
||
WORKDIR /root | ||
RUN useradd -u 1000 flytekit | ||
RUN chown flytekit: /root | ||
USER flytekit | ||
|
||
ENV FLYTE_INTERNAL_IMAGE "$DOCKER_IMAGE" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.