mirror of
https://github.com/pret/pokediamond.git
synced 2024-11-23 05:59:42 +00:00
14 lines
466 B
Docker
14 lines
466 B
Docker
FROM ubuntu:20.04
|
|
|
|
RUN dpkg --add-architecture i386 && \
|
|
apt update && \
|
|
DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends binutils-arm-none-eabi build-essential git libpng-dev wine wine32 && \
|
|
rm -r /var/cache/apt/archives /var/lib/apt/lists
|
|
|
|
WORKDIR /app
|
|
|
|
# Run a persistent wineserver to avoid errors like
|
|
# wine: a wine server seems to be running, but I cannot connect to it.
|
|
RUN mkdir -p /root/.wine
|
|
CMD /usr/lib/wine/wineserver32 -f -p
|