2015-06-09 03:26:20 +02:00
|
|
|
# Wine docker image base
|
2020-03-13 17:21:09 +01:00
|
|
|
FROM debian:sid-slim
|
2017-03-09 19:14:37 +01:00
|
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
2015-06-09 03:26:20 +02:00
|
|
|
|
|
|
|
# install wine
|
2020-03-13 17:23:49 +01:00
|
|
|
RUN echo "deb http://deb.debian.org/debian sid main contrib" > /etc/apt/sources.list \
|
|
|
|
&& apt-get update && apt-get install -y \
|
2020-03-13 18:15:06 +01:00
|
|
|
apt-transport-https \
|
2020-03-13 17:30:56 +01:00
|
|
|
cabextract \
|
|
|
|
ca-certificates \
|
2020-03-13 18:15:06 +01:00
|
|
|
curl \
|
|
|
|
gnupg2 \
|
2020-03-13 17:30:56 +01:00
|
|
|
fonts-wine \
|
2020-03-13 17:22:08 +01:00
|
|
|
winetricks \
|
2015-06-09 03:26:20 +02:00
|
|
|
--no-install-recommends && \
|
2020-03-13 18:15:06 +01:00
|
|
|
curl -sSL "https://dl.winehq.org/wine-builds/winehq.key" | apt-key add - \
|
|
|
|
&& echo "deb https://dl.winehq.org/wine-builds/debian/ bullseye main" >> /etc/apt/sources.list \
|
|
|
|
&& dpkg --add-architecture i386 && \
|
2015-06-09 03:26:20 +02:00
|
|
|
apt-get update && \
|
|
|
|
apt-get install -y \
|
2020-03-13 17:30:56 +01:00
|
|
|
libwine \
|
2020-03-13 18:15:06 +01:00
|
|
|
winehq-staging \
|
2015-06-09 03:26:20 +02:00
|
|
|
--no-install-recommends \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
ENV HOME /root
|
|
|
|
WORKDIR $HOME
|