2023-08-14 01:42:38 +00:00
|
|
|
FROM alpine:edge
|
2023-08-15 05:44:40 +00:00
|
|
|
RUN apk add --no-cache go yq git gcc bash abuild
|
2023-08-14 01:42:38 +00:00
|
|
|
RUN apk add --no-cache ko --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing
|
|
|
|
RUN apk add --no-cache --allow-untrusted apko --repository=https://packages.wolfi.dev/os
|
2023-10-09 00:37:50 +00:00
|
|
|
RUN wget -O lure.tar.gz https://gitea.elara.ws/lure/lure/releases/download/v0.1.2/lure-0.1.2-linux-x86_64.tar.gz && \
|
|
|
|
tar xvf lure.tar.gz && \
|
|
|
|
install -Dm755 lure /usr/bin/lure && \
|
|
|
|
rm -r lure scripts
|
2023-08-14 01:42:38 +00:00
|
|
|
COPY lure.toml /root/.config/lure/lure.toml
|
|
|
|
COPY login.sh /bin/registry-login
|