Dockerfile - geomyidae - A small C-based gopherd. (gopher://bitreich.org/1/scm/geomyidae)
HTML git clone git://r-36.net/geomyidae
DIR Log
DIR Files
DIR Refs
DIR README
DIR 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/geomyidae
12
13 EXPOSE 70
14 CMD geomyidae -d -h 0.0.0.0