16 lines
No EOL
529 B
Docker
16 lines
No EOL
529 B
Docker
FROM git.zontreck.com/packages/dind:latest
|
|
|
|
RUN curl -L -o /usr/local/bin/wings "https://github.com/pelican-dev/wings/releases/latest/download/wings_linux_$([[ "$(uname -m)" == "x86_64" ]] && echo "amd64" || echo "arm64")"
|
|
RUN mkdir -pv /etc/pelican /var/run/wings
|
|
RUN chmod u+x /usr/local/bin/wings
|
|
|
|
ENV TZ=America/Phoenix
|
|
|
|
RUN apk add --no-cache tzdata
|
|
RUN ln -sfv /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
|
|
ADD ./entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |