You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spiel/docker/Dockerfile

21 lines
371 B
Docker

FROM python:3.10
RUN : \
&& apt-get update \
&& apt-get install -y vim emacs nano \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& :
ENV COLORTERM=truecolor \
EDITOR=/usr/bin/vim
RUN --mount=target=/spiel : \
&& pip install --no-cache-dir --disable-pip-version-check /spiel \
&& spiel version \
&& :
WORKDIR /app
CMD ["spiel", "demo", "present"]