Skip to content

Commit

Permalink
Merge pull request #1 from swade1987/fix
Browse files Browse the repository at this point in the history
Upgrading alpine version.
  • Loading branch information
swade1987 authored Apr 22, 2022
2 parents d903f40 + 77299a1 commit f12b8ba
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
FROM alpine:3.14.3
FROM alpine:3.15.4

RUN apk add --no-cache \
curl \
bash \
git \
&& rm -rf /var/cache/apk/*
RUN apk update && apk --no-cache add bash curl git

SHELL ["/bin/bash", "-o", "pipefail", "-c"]

RUN curl -sL https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv3.8.7/kustomize_v3.8.7_linux_amd64.tar.gz \
| tar xz -C /usr/local/bin
| tar xz -C /usr/local/bin

RUN git config --global --add safe.directory /github/workspace

RUN rm -rf /var/cache/apk/*

COPY kustdiff /kustdiff

Expand Down

0 comments on commit f12b8ba

Please sign in to comment.