diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b8ed329..ddf7989 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -92,7 +92,7 @@ jobs: DOCKER_USER: ${{ secrets.DOCKER_USER }} DOCKER_PASS: ${{ secrets.DOCKER_PASS }} run: | - DOCKER_IMAGE="${{ secrets.DOCKER_USER }}/$(make name)" IMAGE_VERSION="$(make version)" ./scripts/release docker + RELEASE_NEED_WAIT=true DOCKER_IMAGE="${{ secrets.DOCKER_USER }}/$(make name)" IMAGE_VERSION="$(make version)" ./scripts/release docker publish: name: Publish diff --git a/Dockerfile b/Dockerfile index 5a3c0b3..9db6c8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,5 +15,7 @@ USER 65534 WORKDIR /usr/src/app COPY exiftool/ . +COPY wait_${TARGETOS}_${TARGETARCH} /wait + COPY ca-certificates.crt /etc/ssl/certs/ca-certificates.crt COPY release/exas_${TARGETOS}_${TARGETARCH} /exas diff --git a/README.md b/README.md index 88887cf..fe21b2c 100644 --- a/README.md +++ b/README.md @@ -24,15 +24,6 @@ You can configure app by passing CLI args or environment variables (cf. [Usage]( You'll find a Kubernetes exemple in the [`infra/`](infra) folder, using my [`app chart`](https://github.com/ViBiOh/charts/tree/main/app) -## CI - -Following variables are required for CI: - -| Name | Purpose | -| :-------------: | :-------------------------: | -| **DOCKER_USER** | for publishing Docker image | -| **DOCKER_PASS** | for publishing Docker image | - ## Usage The application can be configured by passing CLI args described below or their equivalent as environment variable. CLI values take precedence over environments variables.