Skip to content

Commit

Permalink
Merge pull request #86 from openinfradev/add_dockerfiles
Browse files Browse the repository at this point in the history
add Dockerfiles for workflows
  • Loading branch information
robertchoi80 authored May 23, 2022
2 parents f047faf + 7d0242c commit 4d3bb7c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
File renamed without changes.
13 changes: 13 additions & 0 deletions dockerfiles/Dockerfile.sonobuoy-worker
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM centos:centos7

MAINTAINER Cloud Co, SK Telecom

USER root
RUN curl -sSLo sonobuoy.tar.gz https://github.com/vmware-tanzu/sonobuoy/releases/download/v0.56.6/sonobuoy_0.56.6_linux_amd64.tar.gz
RUN tar -xzf ./sonobuoy.tar.gz
RUN chmod +x ./sonobuoy && cp sonobuoy /usr/bin/ && rm -rf ./sonobuoy*

RUN curl -Lo /usr/bin/kubectl "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
RUN chmod +x /usr/bin/kubectl

CMD ["bash"]
File renamed without changes.

0 comments on commit 4d3bb7c

Please sign in to comment.