From c7a51d6d445f6ef6bf2de082b11aa08aa32273a1 Mon Sep 17 00:00:00 2001 From: Kirill Krasnov Date: Tue, 10 Apr 2018 16:48:23 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/Dockerfile b/Dockerfile index a0d95c21..62c48223 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,22 +1,24 @@ -FROM jedisct1/phusion-baseimage-latest -MAINTAINER archedraft +FROM debian:latest +MAINTAINER Kirill Krasnov # Set correct environment variables ENV HOME /root -ENV DEBIAN_FRONTEND noninteractive +#ENV DEBIAN_FRONTEND noninteractive ENV LC_ALL C.UTF-8 ENV LANG ru_RU.UTF-8 ENV LANGUAGE ru_RU.UTF-8 -RUN apt-get update && apt-get -y install xvfb \ - x11vnc \ - xdotool \ - wget \ - supervisor \ - x11-apps \ - wine-stable \ - net-tools -RUN dpkg --add-architecture i386 && apt-get update && apt-get -y install wine32 +RUN dpkg --add-architecture i386 && \ +apt-get update && apt-get -y install xvfb \ +x11vnc \ +xdotool \ +wget \ +supervisor \ +x11-apps \ +wine64 \ +wine32 \ +net-tools + RUN rm -rf /var/lib/apt/lists/* ENV DISPLAY :0.0