11 lines
No EOL
388 B
Docker
11 lines
No EOL
388 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
|
|
|
|
|
|
ADD ./entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
CMD ["/entrypoint.sh"] |