Skip to content

Commit

Permalink
Setup the right version for the docker container (#7570)
Browse files Browse the repository at this point in the history
  • Loading branch information
benmoriceau authored Nov 2, 2021
1 parent d37e00e commit 5011226
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions airbyte-scheduler/app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ENV APPLICATION airbyte-scheduler

WORKDIR /app

ADD build/distributions/${APPLICATION}-0.30.23-alpha.tar /app
ADD build/distributions/${APPLICATION}-0.30.25-alpha.tar /app

# wait for upstream dependencies to become available before starting server
ENTRYPOINT ["/bin/bash", "-c", "${APPLICATION}-0.30.23-alpha/bin/${APPLICATION}"]
ENTRYPOINT ["/bin/bash", "-c", "${APPLICATION}-0.30.25-alpha/bin/${APPLICATION}"]
4 changes: 2 additions & 2 deletions airbyte-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ENV APPLICATION airbyte-server

WORKDIR /app

ADD build/distributions/${APPLICATION}-0.30.23-alpha.tar /app
ADD build/distributions/${APPLICATION}-0.30.25-alpha.tar /app

# wait for upstream dependencies to become available before starting server
ENTRYPOINT ["/bin/bash", "-c", "${APPLICATION}-0.30.23-alpha/bin/${APPLICATION}"]
ENTRYPOINT ["/bin/bash", "-c", "${APPLICATION}-0.30.25-alpha/bin/${APPLICATION}"]
4 changes: 2 additions & 2 deletions airbyte-workers/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN chmod +x ./kubectl
RUN mv ./kubectl /usr/local/bin

# Move worker app
ADD build/distributions/${APPLICATION}-0.30.23-alpha.tar /app
ADD build/distributions/${APPLICATION}-0.30.25-alpha.tar /app

# wait for upstream dependencies to become available before starting server
ENTRYPOINT ["/bin/bash", "-c", "${APPLICATION}-0.30.23-alpha/bin/${APPLICATION}"]
ENTRYPOINT ["/bin/bash", "-c", "${APPLICATION}-0.30.25-alpha/bin/${APPLICATION}"]

0 comments on commit 5011226

Please sign in to comment.