tanks/Dockerfile

10 lines
200 B
Docker
Raw Normal View History

2018-08-07 12:21:52 -06:00
FROM alpine AS builder
2018-08-08 08:08:04 -06:00
RUN apk --no-cache add build-base m4 markdown
2018-08-07 12:21:52 -06:00
COPY . /src
RUN make -C /src DESTDIR=/tanks install
FROM neale/eris
2018-08-08 08:08:04 -06:00
COPY --from=builder /tanks /tanks
CMD [ "/tanks/bin/go.sh" ]