-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d1b9c19
commit 8a21b62
Showing
5 changed files
with
49 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
ARG GOLANGCI_LINT_VERSION | ||
FROM docker.io/golangci/golangci-lint:${GOLANGCI_LINT_VERSION} | ||
|
||
COPY tools/install_golangci_lint_deps.sh /usr/local/bin/. | ||
RUN /usr/local/bin/install_golangci_lint_deps.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/env bash | ||
|
||
# just a warning - as "sudo" is not in the container we are using | ||
echo "This script should be run as root" | ||
|
||
apt-get update | ||
|
||
# This is needed to lint internal/upload/koji package | ||
apt-get install -y libkrb5-dev | ||
|
||
# This is needed for the container upload dependencies | ||
apt-get install -y libgpgme-dev | ||
|
||
# This is needed for the 'github.com/containers/storage' package | ||
apt-get install -y libbtrfs-dev | ||
|
||
apt-get install -y libdevmapper-dev |