zorldo

Goofing around with Ebiten
git clone git://bsandro.tech/zorldo
Log | Files | Refs | README

Dockerfile (315B)


      1 FROM debian:buster
      2 
      3 # For the version of gcc-mingw-w64, see https://packages.debian.org/buster/gcc-mingw-w64-x86-64
      4 RUN apt-get update && apt-get install -y \
      5         git \
      6         ca-certificates \
      7         golang \
      8         gcc-mingw-w64=8.3.0-6+21.3~deb10u1 \
      9         && rm -rf /var/lib/apt/lists/*
     10 
     11 WORKDIR /work