Skip to content
Snippets Groups Projects
Commit b3b9c6c2 authored by nimrod's avatar nimrod
Browse files

Updates.

- Alpine 3.13.
- Silence a hadolint warning.
- Fetch juxr from a build stage image instead of downloading.
- Full url from fetching from Docker Hub (as opposed to my registry).
parent 5132e55b
No related branches found
No related tags found
No related merge requests found
FROM alpine:3.12 FROM registry.hub.docker.com/cloudbees/juxr:0.1.22 AS juxr
FROM registry.hub.docker.com/library/alpine:3.13
# hadolint ignore=DL3018
RUN apk add --update --no-cache \ RUN apk add --update --no-cache \
bats \ bats \
build-base \ build-base \
...@@ -7,6 +10,6 @@ RUN apk add --update --no-cache \ ...@@ -7,6 +10,6 @@ RUN apk add --update --no-cache \
openssh \ openssh \
openssl \ openssl \
; ;
RUN wget https://github.com/cloudbees-oss/juxr/releases/download/0.1.22/juxr-x86_64-unknown-linux-musl.tar.gz -O - | tar -xzC /usr/local/bin COPY --from=juxr /usr/local/bin/juxr /usr/local/bin/juxr
ENV GIT_AUTHOR_EMAIL='you@example.com' \ ENV GIT_AUTHOR_EMAIL='you@example.com' \
GIT_AUTHOR_NAME='Your Name' GIT_AUTHOR_NAME='Your Name'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment