Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate to 20.04 #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 26 additions & 14 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,27 +1,39 @@
FROM ubuntu:18.04
MAINTAINER benjymous <[email protected]>
FROM ubuntu:20.04

# based on https://github.com/suchja/wine
ENV WINE_MONO_VERSION 0.0.8
USER root

# Set noninteractive installation
ARG DEBIAN_FRONTEND=noninteractive

# Set the timezone
RUN ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime && \
apt-get update && \
apt-get install -y tzdata && \
dpkg-reconfigure --frontend noninteractive tzdata


# Install some tools required for creating the image
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
curl \
unzip \
ca-certificates \
xvfb
&& apt-get install -y --no-install-recommends \
curl \
unzip \
ca-certificates \
xvfb

# Install wine and related packages
RUN dpkg --add-architecture i386 \
&& apt-get update -qq \
&& apt-get install -y -qq \
wine-stable \
winetricks \
wine32 \
libgl1-mesa-glx:i386 \
&& rm -rf /var/lib/apt/lists/*
&& apt-get update -qq \
&& apt-get install -y -qq \
wine-stable \
winetricks \
wine32 \
libgl1-mesa-glx:i386 \
&& rm -rf /var/lib/apt/lists/*


### Everything below here is untested with Ubuntu 20.04

# Use the latest version of winetricks
#RUN curl -SL 'https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks' -o /usr/local/bin/winetricks \
Expand Down