-
Notifications
You must be signed in to change notification settings - Fork 4
chore: minor improvement found during testing #56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
19e88ef
0010f72
66b2808
0f4049d
5f4ef34
fe3e3dd
4d263a1
1046ba5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,7 +17,6 @@ | |
| curl \ | ||
| jq \ | ||
| less \ | ||
| yq \ | ||
| gnupg \ | ||
| bash-completion \ | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. seeing warnings from GH actions about this line ending in |
||
|
|
||
|
|
@@ -29,7 +28,7 @@ | |
|
|
||
| # Clean up | ||
| && apt-get purge -y gnupg \ | ||
| && rm -rf /var/lib/apt/lists/* | ||
|
Check warning on line 31 in applications/wg-easy/container/Containerfile
|
||
|
|
||
| # Install helm | ||
| RUN curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash \ | ||
|
|
@@ -42,6 +41,14 @@ | |
| # Install Task | ||
| && sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin \ | ||
|
|
||
| # Install yq | ||
| && curl -Ls $(curl -s https://api.github.com/repos/mikefarah/yq/releases/latest \ | ||
| | grep "browser_download_url.*linux_${TARGETARCH}" \ | ||
| | cut -d : -f 2,3 \ | ||
| | tr -d \") -o yq \ | ||
| && chmod +x yq \ | ||
| && mv yq /usr/local/bin/yq \ | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. seeing warnings from GH actions about this line ending in |
||
|
|
||
| # Install Helmfile | ||
| && curl -Ls $(curl -s https://api.github.com/repos/helmfile/helmfile/releases/latest \ | ||
| | grep "browser_download_url.*linux_${TARGETARCH}.tar.gz" \ | ||
|
|
@@ -56,7 +63,7 @@ | |
| | cut -d : -f 2,3 \ | ||
| | tr -d \") -o replicated.tar.gz \ | ||
| && tar xf replicated.tar.gz replicated && rm replicated.tar.gz \ | ||
| && mv replicated /usr/local/bin/replicated | ||
|
Check warning on line 66 in applications/wg-easy/container/Containerfile
|
||
|
|
||
| # Create a non-root user for better security | ||
| RUN groupadd -r devuser && useradd -r -g devuser -m -s /bin/bash devuser | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| --- | ||
| apiVersion: kots.io/v1beta1 | ||
| kind: Application | ||
| metadata: | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.