mirror of https://github.com/dirtbags/tanks.git
10 lines
185 B
Docker
10 lines
185 B
Docker
|
FROM alpine AS builder
|
||
|
|
||
|
RUN apk --no-cache add build-base
|
||
|
COPY . /src
|
||
|
RUN make -C /src DESTDIR=/tanks install
|
||
|
|
||
|
FROM neale/eris
|
||
|
COPY builder:/opt/tanks /tanks
|
||
|
CMD [ "/opt/tanks/go.sh" ]
|