mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
7eea00edf3
Signed-off-by: Michael Käufl <dockerfiles@c.michael-kaeufl.de>
24 lines
434 B
Docker
24 lines
434 B
Docker
FROM alpine:latest
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|
|
|
RUN apk --no-cache add \
|
|
ncurses
|
|
|
|
RUN set -x \
|
|
&& apk add --no-cache --virtual .build-deps \
|
|
ca-certificates \
|
|
gcc \
|
|
git \
|
|
libc-dev \
|
|
make \
|
|
&& git clone --depth 1 https://github.com/abs0/wargames.git /tmp/wargames \
|
|
&& ( \
|
|
cd /tmp/wargames \
|
|
&& make \
|
|
&& make install \
|
|
) \
|
|
&& rm -rf /tmp/wargames \
|
|
&& apk del .build-deps
|
|
|
|
CMD [ "wargames" ]
|