mirror of
https://github.com/FairwindsOps/polaris.git
synced 2026-05-14 05:06:59 +00:00
* Add Github Action from https://github.com/mambax/setup-polaris * Add tag information to action * repository name must be lowercase * repository name must be lowercase * repository name must be lowercase * Own image * Debug * Make the file local * Move into actions folder * Rename action * Remove path slash * Rename Dockerfile * Change path * Move script * Remove dot * Test * - Change to gh/download setup script - Move docs into Infra as Code page * Add small comment about Dockerfile * Rm unwanted line break * Improve action yaml * Update test_setup.yml * Update test_setup.yml * Update test_setup.yml * Pavel fixed all bugs Co-authored-by: dom <dominik.meyer01@sap.com> Co-authored-by: Pavel Zorin <pazonec@yandex.ru>
16 lines
290 B
Docker
16 lines
290 B
Docker
# The action uses an own Dockerfile on purpose because the root Dockerfile takes way too long to build for an action
|
|
|
|
FROM alpine:3.10
|
|
|
|
RUN apk add --no-cache \
|
|
bash \
|
|
ca-certificates \
|
|
curl \
|
|
wget \
|
|
tar \
|
|
jq
|
|
|
|
COPY get_polaris.sh /get_polaris.sh
|
|
|
|
ENTRYPOINT ["/get_polaris.sh"]
|