1
0
mirror of synced 2026-01-22 10:01:28 -05:00
Files
airbyte/airbyte-server/Dockerfile
George Claireaux 2ca4f9441b 🐛 Kubernetes: Fix server starting up before Temporal ready to operate (#4567)
* refactor waitForTemporalServerAndLog into TemporalUtils

* remove use of docker-compose-wait
2021-07-07 09:51:00 +01:00

18 lines
423 B
Docker

FROM openjdk:14.0.2-slim AS server
EXPOSE 8000
ENV APPLICATION airbyte-server
WORKDIR /app
COPY build/distributions/${APPLICATION}*.tar ${APPLICATION}.tar
RUN mkdir latest_seeds
COPY build/config_init/resources/main/config latest_seeds
RUN tar xf ${APPLICATION}.tar --strip-components=1
# wait for upstream dependencies to become available before starting server
ENTRYPOINT ["/bin/bash", "-c", "bin/${APPLICATION}"]