master
Simon Bruder 2019-03-29 14:09:08 +00:00
commit 67b4112623
1 changed files with 24 additions and 0 deletions

24
Dockerfile Normal file
View File

@ -0,0 +1,24 @@
FROM alpine as builder
RUN apk add --no-cache \
build-base \
cvs \
git \
zlib-dev
RUN cvs -d :pserver:cvs@cvs.fefe.de:/cvs -z9 co libowfat \
&& cd libowfat \
&& make headers \
&& make -j 4 libowfat.a
RUN git clone --depth=1 git://erdgeist.org/opentracker \
&& cd opentracker \
&& make -j 4 \
FEATURES="-DWANT_FULLSCRAPE -DWANT_COMPRESSION_GZIP" \
LDFLAGS="-L../libowfat/ -lowfat -lz -static"
FROM scratch
COPY --from=builder /opentracker/opentracker /opentracker
ENTRYPOINT ["/opentracker"]