first import
Some checks failed
perso/docker-octant/pipeline/head There was a failure building this commit
Some checks failed
perso/docker-octant/pipeline/head There was a failure building this commit
This commit is contained in:
15
Dockerfile
Normal file
15
Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
FROM "ubuntu:20.10"
|
||||
LABEL maintainer="Cabillot Julien <dockerimages@cabillot.eu>"
|
||||
|
||||
USER "root"
|
||||
|
||||
RUN curl -o /octant.deb -kL https://github.com/vmware-tanzu/octant/releases/download/$(curl -s https://github.com/vmware-tanzu/octant/releases/latest | sed 's/^.*tag\///' | sed 's/\".*$//')/octant_$(curl -s https://github.com/vmware-tanzu/octant/releases/latest | sed 's/^.*tag\///' | sed 's/\".*$//' | sed 's/v//' )_Linux-64bit.deb && \
|
||||
dpkg -i /octant.deb && \
|
||||
rm -f /octant.deb
|
||||
|
||||
COPY octant/entrypoint.sh /root/entrypoint.sh
|
||||
RUN chmod +x /root/entrypoint.sh
|
||||
|
||||
#USER "iperf"
|
||||
|
||||
CMD ["/bin/octant"]
|
||||
Reference in New Issue
Block a user