primeiro commit
All checks were successful
Build and Push Image / Build and push image (push) Successful in 2m24s
All checks were successful
Build and Push Image / Build and push image (push) Successful in 2m24s
This commit is contained in:
12
Dockerfile
Normal file
12
Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
FROM cgr.dev/chainguard/wolfi-base
|
||||
COPY run /usr/local/bin/run
|
||||
RUN apk add --no-cache bash git wget ca-certificates libgcc tini
|
||||
RUN wget -O /tmp/gw.tar.gz https://github.com/daniel7grant/gw/releases/download/v0.2.2/gw-bin_x86_64-unknown-linux-gnu.tar.gz &&\
|
||||
wget -O /tmp/algernon.tar.xz https://github.com/xyproto/algernon/releases/download/v1.16.0/algernon-1.16.0-linux_x86_64_static.tar.xz &&\
|
||||
tar -xvf /tmp/gw.tar.gz -C /usr/local/bin &&\
|
||||
tar -xvf /tmp/algernon.tar.xz --strip=1 -C /usr/local/bin &&\
|
||||
rm -f /tmp/gw.tar.gz /tmp/algernon.tar.xz /usr/local/bin/._LICENSE /usr/local/bin/LICENSE /usr/local/bin/algernon.1.gz &&\
|
||||
chmod +x /usr/local/bin/run &&\
|
||||
apk del -r wget
|
||||
ENTRYPOINT ["tini"]
|
||||
CMD ["/usr/local/bin/run"]
|
||||
Reference in New Issue
Block a user