Introduction
Introduction Statistics Contact Development Disclaimer Help
Dockerfile - geomyidae - a small C-based gopherd (mirror)
git clone git://git.codemadness.org/geomyidae
Log
Files
Refs
README
LICENSE
---
Dockerfile (319B)
---
1 FROM alpine AS build
2
3 WORKDIR /usr/local/src/geomyidae
4
5 RUN apk update && apk add build-base libressl-dev git
6 RUN git clone git://bitreich.org/geomyidae /usr/local/src/geomyidae
7 RUN make
8
9 FROM alpine
10
11 COPY --from=build /usr/local/src/geomyidae/geomyidae /usr/local/sbin/geo…
12
13 EXPOSE 70
14 CMD geomyidae -d -h 0.0.0.0
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.