This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ARG STEP_VERSION="0.30.2" | |
| ARG LEGO_VERSION="v4.35.2" | |
| FROM alpine AS downloader | |
| ARG LEGO_VERSION | |
| RUN wget https://github.com/go-acme/lego/releases/download/${LEGO_VERSION}/lego_${LEGO_VERSION}_linux_amd64.tar.gz | |
| RUN tar -xf lego_v4.35.2_linux_amd64.tar.gz | |
| FROM golang:alpine AS builder |