-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from theohbrothers/feature/add-libvirt-composi…
…te-variant Feature: Add `libvirt` composite variant
- 20241212.0.0
- 20241205.0.0
- 20241128.0.0
- 20241017.0.0
- 20241003.0.0
- 20240919.0.0
- 20240821.0.0
- 20240808.0.0
- 20240727.0.0
- 20240725.0.0
- 20240711.0.0
- 20240704.0.0
- 20240627.0.0
- 20240606.0.0
- 20240523.0.0
- 20240509.0.0
- 20240425.0.0
- 20240418.0.0
- 20240412.0.0
- 20240314.0.0
- 20240222.0.0
- 20240209.0.0
- 20240201.0.0
- 20240125.0.0
- 20240118.0.0
- 20231214.0.0
- 20231130.0.0
- 20231116.0.0
- 20231102.0.0
- 20231019.0.0
- 20231011.0.0
- 20231005.0.0
- 20230927.0.0
- 20230926.0.0
- 20230922.0.0
- 20230914.0.0
- 20230629.0.0
- 20230311.0.0
- 20230304.0.0
- 20230207.0.0
- 20230127.0.0
- 20221210.0.0
- 20221204.1.0
Showing
5 changed files
with
158 additions
and
4 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
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
18 changes: 18 additions & 0 deletions
18
variants/v1.3.4-jq-libvirt-sops-ssh-alpine-3.17/Dockerfile
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,18 @@ | ||
FROM alpine:3.17 | ||
ARG TARGETPLATFORM | ||
ARG BUILDPLATFORM | ||
RUN echo "I am running on $BUILDPLATFORM, building for $TARGETPLATFORM" | ||
|
||
RUN apk add --no-cache terraform=1.3.4-r0 | ||
|
||
RUN apk add --no-cache jq | ||
|
||
RUN apk add --no-cache libvirt-client | ||
|
||
RUN wget -qO- https://github.com/mozilla/sops/releases/download/v3.7.1/sops-v3.7.1.linux > /usr/local/bin/sops && chmod +x /usr/local/bin/sops | ||
|
||
RUN apk add --no-cache gnupg | ||
|
||
RUN apk add --no-cache openssh-client sshpass | ||
|
||
CMD [ "terraform" ] |