Skip to content
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

Add coreutils #88

Merged
merged 1 commit into from
Dec 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ips/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.gitlab.com/cmmarslender/kubectl-helm:v3 as kubectl-helm

Check warning on line 1 in ips/Dockerfile

View workflow job for this annotation

GitHub Actions / build / package

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
FROM hashicorp/packer:latest as packer

Check warning on line 2 in ips/Dockerfile

View workflow job for this annotation

GitHub Actions / build / package

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
FROM hashicorp/terraform:latest as terraform

Check warning on line 3 in ips/Dockerfile

View workflow job for this annotation

GitHub Actions / build / package

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
FROM alpine:latest
Expand All @@ -10,7 +10,7 @@
COPY --from=packer /bin/packer /bin/
COPY --from=terraform /bin/terraform /bin/
COPY --from=kubectl-helm /usr/local/bin/kubectl /bin/
RUN apk add --no-cache ansible aws-cli bash build-base bzip2-dev curl curl-dev git github-cli git go gpg gpg-agent jq libffi-dev make mysql-client netcat-openbsd openssh-client openssh-keygen openssl openssl-dev readline-dev rsync sudo sqlite-dev tar tk-dev wget xorriso xz-dev zlib-dev && \
RUN apk add --no-cache ansible aws-cli bash build-base bzip2-dev coreutils curl curl-dev git github-cli git go gpg gpg-agent jq libffi-dev make mysql-client netcat-openbsd openssh-client openssh-keygen openssl openssl-dev readline-dev rsync sudo sqlite-dev tar tk-dev wget xorriso xz-dev zlib-dev && \
apk add --no-cache yq --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community && \
git clone https://github.com/pyenv/pyenv.git ~/.pyenv && \
pyenv install 3.11 && \
Expand Down
Loading