28 lines
956 B
Docker
28 lines
956 B
Docker
|
FROM ubuntu:bionic
|
||
|
|
||
|
# To avoid problems with Dialog and curses wizards
|
||
|
ENV DEBIAN_FRONTEND noninteractive
|
||
|
|
||
|
RUN dpkg --add-architecture i386 && \
|
||
|
apt-get update && \
|
||
|
apt-get install -y gnupg curl && \
|
||
|
curl -o /tmp/winehq.key -fsSL https://dl.winehq.org/wine-builds/winehq.key && \
|
||
|
apt-key add /tmp/winehq.key && \
|
||
|
echo "deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main" | tee /etc/apt/sources.list.d/winehq.list && \
|
||
|
apt-get update && \
|
||
|
apt-get install -y --install-recommends winehq-staging && \
|
||
|
apt-get install -y winbind
|
||
|
|
||
|
# Set locale to: en_US.UTF-8
|
||
|
RUN apt-get -y install locales && \
|
||
|
sed -i.orig '/^# en_US.UTF-8.*/s/^#.//g' /etc/locale.gen && \
|
||
|
locale-gen && \
|
||
|
update-locale LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8
|
||
|
|
||
|
RUN apt-get -y install libvulkan1 libvulkan1:i386 vulkan-utils
|
||
|
|
||
|
COPY ./launch /launch
|
||
|
ENTRYPOINT [ "/bin/bash", "/launch" ]
|
||
|
|
||
|
LABEL maintainer="Andrey Arapov <andrey.arapov@nixaid.com>"
|