Skip to content

Commit

Permalink
Build
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisBellew committed May 26, 2024
1 parent 34c469f commit 5766eb7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ 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 \
&& apt-get install -y grafana \
&& 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/*

Expand Down

0 comments on commit 5766eb7

Please sign in to comment.