Skip to content

Commit

Permalink
fix(build): Auto apply for apt-get
Browse files Browse the repository at this point in the history
  • Loading branch information
heubeck committed Apr 3, 2024
1 parent ca1c77c commit 5890fcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM golang:1.22
# Injected from the build
ARG VERSION

RUN apt-get update && apt-get install uuid-dev uuid-runtime
RUN apt-get update -y && apt-get install -y uuid-dev uuid-runtime

# make it
WORKDIR /build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
branches:
- '**'
paths-ignore:
- '.github/**'
- '.github/dependabot.yml'
- 'static/**'
- 'README.md'
env:
Expand Down

0 comments on commit 5890fcf

Please sign in to comment.