yasnippet-snippets/snippets/dockerfile-mode/alpine-dockerize

13 lines
551 B
Plaintext

# -*- mode: snippet -*-
# name: dockerize for Alpine Images
# key: alpine-dockerize
# expand-env: ((yas-indent-line 'fixed) (yas-wrap-around-region nil))
# --
ENV DOCKERIZE_VERSION ${1:v0.6.1}
RUN apk update && \
apk --no-cache add openssl && \
wget https://github.com/jwilder/dockerize/releases/download/\${DOCKERIZE_VERSION}/dockerize-alpine-linux-amd64-\${DOCKERIZE_VERSION}.tar.gz && \
tar -C /usr/local/bin -xzvf dockerize-alpine-linux-amd64-\${DOCKERIZE_VERSION}.tar.gz && \
rm dockerize-alpine-linux-amd64-\${DOCKERIZE_VERSION}.tar.gz