tetris-cli/dex-images/tetris/Dockerfile
Santiago Benalcázar 6f35488990
Updated archlinux docker image
I change the archlinux image you're using because it is not the official and it's deprecated (https://hub.docker.com/r/base/archlinux/).
2019-06-05 11:34:00 +02:00

26 lines
438 B
Docker

FROM archlinux/base
ENV DEXBUILD_DIR="/bin"
RUN mkdir -p "${DEXBUILD_DIR}"
WORKDIR ${DEXBUILD_DIR}
RUN ( \
curl -L https://github.com/samtay/tetris/releases/download/0.1.2/tetris-`uname -s`-`uname -m` -o tetris && \
chmod +x tetris && \
true )
#
# container runtime configuration
#
ENTRYPOINT ["/bin/tetris"]
#
# v1 dex-api
#
LABEL \
org.dockerland.dex.api="v1" \
org.dockerland.dex.docker_flags="--interactive --tty" \