Dockerfile 837 B

1234567891011121314
  1. FROM centos:7.6.1810
  2. RUN yum install -y epel-release wget iputils telnet net-tools bind-utils && \
  3. #yum install -y xorg-x11-server-Xvfb samba samba-client samba-winbind which cabextract p7zip wine && \
  4. yum install -y mesa-libGLU-devel mesa-libGLU samba-winbind-clients xorg-x11-server-Xvfb which cabextract p7zip wine wine-tahoma-fonts-system wine-wingdings-fonts-system && \
  5. yum update -y tzdata && \
  6. mkdir -p /root/.cache/winetricks && \
  7. cd /root/.cache/winetricks/ && \
  8. wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks && \
  9. chmod +x winetricks && \
  10. /root/.cache/winetricks/winetricks riched20 riched30 corefonts && \
  11. localedef -i ru_RU -f UTF-8 ru_RU.UTF-8 && \
  12. /bin/sleep 15 && \
  13. ln -fs /usr/share/zoneinfo/Europe/Moscow /etc/localtime
  14. ENV LANG=ru_RU.utf8