Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN mkdir -p /usr/src/config
ENV GOOGLE_CLOUD_PROJECT=test-gcp-project \
PYTHONPATH=/usr/src/app

RUN pip install --upgrade pip setuptools
RUN pip install --no-cache-dir --upgrade pip setuptools

###############################################################
# DO NOT EDIT ABOVE THIS LINE. Or you may break klio. #
Expand All @@ -25,7 +25,7 @@ RUN pip install --upgrade pip setuptools
###############################################################

COPY job-requirements.txt job-requirements.txt
RUN pip install -r job-requirements.txt
RUN pip install --no-cache-dir -r job-requirements.txt

COPY __init__.py \
run.py \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ WORKDIR /usr/src/app
ENV GOOGLE_CLOUD_PROJECT=test-gcp-project \
PYTHONPATH=/usr/src/app

RUN pip install --upgrade pip setuptools
RUN pip install --no-cache-dir --upgrade pip setuptools

COPY __init__.py \
run.py \
Expand All @@ -21,4 +21,4 @@ COPY __init__.py \
ARG KLIO_CONFIG=klio-job.yaml
COPY $KLIO_CONFIG klio-job-run-effective.yaml

RUN pip install .
RUN pip install --no-cache-dir .
4 changes: 2 additions & 2 deletions examples/audio_spectrograms/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN mkdir -p /usr/src/config

ENV PYTHONPATH=/usr/src/app

RUN pip install --upgrade pip setuptools
RUN pip install --no-cache-dir --upgrade pip setuptools

COPY __init__.py \
run.py \
Expand All @@ -17,4 +17,4 @@ COPY __init__.py \
job-requirements.txt \
/usr/src/app/

RUN pip install .
RUN pip install --no-cache-dir .
4 changes: 2 additions & 2 deletions examples/catvdog/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ WORKDIR /usr/src/app

ENV PYTHONPATH=/usr/src/app

RUN pip install --upgrade pip setuptools
RUN pip install --no-cache-dir --upgrade pip setuptools

COPY job-requirements.txt job-requirements.txt
RUN pip install -r job-requirements.txt
RUN pip install --no-cache-dir -r job-requirements.txt

COPY __init__.py \
run.py \
Expand Down
14 changes: 7 additions & 7 deletions integration/audio-spectrograms/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ ENV PYTHONPATH=/usr/src/app

RUN apt-get update && apt-get install -y libsndfile1

RUN pip install --upgrade pip setuptools
RUN pip install --no-cache-dir --upgrade pip setuptools

COPY core core
COPY lib lib
COPY exec exec
COPY audio audio
RUN pip install ./core
RUN pip install ./lib
RUN pip install ./exec
RUN pip install ./audio
RUN pip install --no-cache-dir ./core
RUN pip install --no-cache-dir ./lib
RUN pip install --no-cache-dir ./exec
RUN pip install --no-cache-dir ./audio

COPY job-requirements.txt job-requirements.txt
RUN pip install -r job-requirements.txt
RUN pip install --no-cache-dir -r job-requirements.txt

COPY __init__.py \
run.py \
Expand All @@ -31,4 +31,4 @@ COPY __init__.py \

ARG KLIO_CONFIG=klio-job.yaml
COPY $KLIO_CONFIG klio-job-run-effective.yaml
RUN pip install .
RUN pip install --no-cache-dir .
12 changes: 6 additions & 6 deletions integration/batch-modular-default/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ RUN mkdir -p /usr/src/config

ENV PYTHONPATH=/usr/src/app

RUN pip install --upgrade pip setuptools
RUN pip install --no-cache-dir --upgrade pip setuptools

COPY core core
COPY lib lib
COPY exec exec
RUN pip install ./core
RUN pip install ./lib
RUN pip install ./exec
RUN pip install --no-cache-dir ./core
RUN pip install --no-cache-dir ./lib
RUN pip install --no-cache-dir ./exec

COPY job-requirements.txt job-requirements.txt
RUN pip install -r job-requirements.txt
RUN pip install --no-cache-dir -r job-requirements.txt

COPY __init__.py \
run.py \
Expand All @@ -27,4 +27,4 @@ COPY __init__.py \

ARG KLIO_CONFIG=klio-job.yaml
COPY $KLIO_CONFIG klio-job-run-effective.yaml
RUN pip install .
RUN pip install --no-cache-dir .
12 changes: 6 additions & 6 deletions integration/multi-event-input-batch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ RUN mkdir -p /usr/src/config

ENV PYTHONPATH=/usr/src/app

RUN pip install --upgrade pip setuptools
RUN pip install --no-cache-dir --upgrade pip setuptools

COPY core core
COPY lib lib
COPY exec exec
RUN pip install ./core
RUN pip install ./lib
RUN pip install ./exec
RUN pip install --no-cache-dir ./core
RUN pip install --no-cache-dir ./lib
RUN pip install --no-cache-dir ./exec

COPY job-requirements.txt job-requirements.txt
RUN pip install -r job-requirements.txt
RUN pip install --no-cache-dir -r job-requirements.txt

COPY __init__.py \
run.py \
Expand All @@ -27,4 +27,4 @@ COPY __init__.py \

ARG KLIO_CONFIG=klio-job.yaml
COPY $KLIO_CONFIG klio-job-run-effective.yaml
RUN pip install .
RUN pip install --no-cache-dir .
12 changes: 6 additions & 6 deletions integration/read-bq-write-bq/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ RUN mkdir -p /usr/src/config

ENV PYTHONPATH=/usr/src/app

RUN pip install --upgrade pip setuptools
RUN pip install --no-cache-dir --upgrade pip setuptools

COPY core core
COPY lib lib
COPY exec exec
RUN pip install ./core
RUN pip install ./lib
RUN pip install ./exec
RUN pip install --no-cache-dir ./core
RUN pip install --no-cache-dir ./lib
RUN pip install --no-cache-dir ./exec


COPY job-requirements.txt job-requirements.txt
RUN pip install -r job-requirements.txt
RUN pip install --no-cache-dir -r job-requirements.txt

COPY __init__.py \
run.py \
Expand All @@ -27,4 +27,4 @@ COPY __init__.py \

ARG KLIO_CONFIG=klio-job.yaml
COPY $KLIO_CONFIG klio-job-run-effective.yaml
RUN pip install .
RUN pip install --no-cache-dir .
12 changes: 6 additions & 6 deletions integration/read-file-write-file/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ RUN mkdir -p /usr/src/config

ENV PYTHONPATH=/usr/src/app

RUN pip install --upgrade pip setuptools
RUN pip install --no-cache-dir --upgrade pip setuptools

COPY core core
COPY lib lib
COPY exec exec
RUN pip install ./core
RUN pip install ./lib
RUN pip install ./exec
RUN pip install --no-cache-dir ./core
RUN pip install --no-cache-dir ./lib
RUN pip install --no-cache-dir ./exec

COPY job-requirements.txt job-requirements.txt
RUN pip install -r job-requirements.txt
RUN pip install --no-cache-dir -r job-requirements.txt

COPY __init__.py \
run.py \
Expand All @@ -27,4 +27,4 @@ COPY __init__.py \

ARG KLIO_CONFIG=klio-job.yaml
COPY $KLIO_CONFIG klio-job-run-effective.yaml
RUN pip install .
RUN pip install --no-cache-dir .
12 changes: 6 additions & 6 deletions integration/read-file/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ RUN mkdir -p /usr/src/config

ENV PYTHONPATH=/usr/src/app

RUN pip install --upgrade pip setuptools
RUN pip install --no-cache-dir --upgrade pip setuptools

COPY core core
COPY lib lib
COPY exec exec
RUN pip install ./core
RUN pip install ./lib
RUN pip install ./exec
RUN pip install --no-cache-dir ./core
RUN pip install --no-cache-dir ./lib
RUN pip install --no-cache-dir ./exec

COPY job-requirements.txt job-requirements.txt
RUN pip install -r job-requirements.txt
RUN pip install --no-cache-dir -r job-requirements.txt

COPY __init__.py \
run.py \
Expand All @@ -27,4 +27,4 @@ COPY __init__.py \

ARG KLIO_CONFIG=klio-job.yaml
COPY $KLIO_CONFIG klio-job-run-effective.yaml
RUN pip install .
RUN pip install --no-cache-dir .