Skip to content
Snippets Groups Projects
Unverified Commit 4c24548d authored by Laurent Modolo's avatar Laurent Modolo
Browse files

docker: add sabre 039a55e

parent fcb7af24
No related branches found
No related tags found
No related merge requests found
FROM alpine:3.12.0
MAINTAINER Lauret Modolo
ENV SABRE_VERSION=039a55e
ENV SABRE_DEPS g++ bash make zlib-dev git
RUN echo "http://ftp.acc.umu.se/mirror/alpinelinux.org/v3.11/main" > /etc/apk/repositories \
&& echo "http://ftp.acc.umu.se/mirror/alpinelinux.org/v3.11/community" >> /etc/apk/repositories \
&& sed -i -e 's/v[[:digit:]]\..*\//edge\//g' /etc/apk/repositories \
&& apk add --update --no-cache ${SABRE_DEPS} \
&& git clone https://github.com/najoshi/sabre.git \
&& cd sabre \
&& git checkout $SABRE_VERSION \
&& make \
&& mv sabre /usr/bin \
&& chmod +x /usr/bin/sabre
CMD ["bash"]
#!/bin/sh
docker pull lbmc/sabre:039a55e
docker build src/.docker_modules/sabre/039a55e -t 'lbmc/sabre:039a55e'
docker push lbmc/sabre:039a55e
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment