initial commit

Este commit está contenido en:
ale
2020-05-29 17:37:29 +02:00
commit 6ec12a8a8f
Se han modificado 3 ficheros con 38 adiciones y 0 borrados

8
wahay/Dockerfile Archivo normal
Ver fichero

@@ -0,0 +1,8 @@
FROM golang
RUN apt update && apt upgrade -y && apt install -y curl lsb-release dirmngr
RUN curl -s https://dl.autonomia.digital/debian/keys.asc | apt-key add -
RUN echo deb https://dl.autonomia.digital/debian $(lsb_release -c | cut -f 2) main | tee /etc/apt/sources.list.d/wahay.list
RUN echo deb-src https://dl.autonomia.digital/debian $(lsb_release -c | cut -f 2) main | tee -a /etc/apt/sources.list.d/wahay.list
RUN apt update && apt install -y wahay
ENTRYPOINT ["wahay"]