diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 34bcd7c..4156574 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,6 +10,14 @@ jobs: runs-on: ubuntu-latest concurrency: group: build + # strategy: + # matrix: + # os: [ubuntu-latest, macos-latest] + # include: + # - os: ubuntu-latest + # architecture: amd64 + # - os: macos-latest + # architecture: arm64 steps: - name: Checkout code diff --git a/Dockerfile b/Dockerfile index 775bcb5..4b91414 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,7 +40,7 @@ COPY --from=builder /app/tempo_2.0.0_linux_*.deb /app # Install Tempo and Grafana RUN apt-get update \ - && apt-get install -y software-properties-common \ + && apt-get install -y software-properties-common curl \ && add-apt-repository "deb https://packages.grafana.com/oss/deb stable main" \ && curl -s https://packages.grafana.com/gpg.key | apt-key add - \ && apt-get update \ @@ -48,7 +48,7 @@ RUN apt-get update \ && dpkg -i tempo_2.0.0_linux_*.deb \ && rm tempo_2.0.0_linux_*.deb \ && apt-get install -y grafana \ - && apt-get remove -y software-properties-common \ + && apt-get remove -y software-properties-common curl \ && apt-get clean \ && rm -rf /var/lib/apt/lists/*