-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c622136
commit 82d0996
Showing
2 changed files
with
69 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
FROM jlesage/baseimage-gui:ubuntu-18.04 | ||
|
||
RUN apt-get update && apt-get full-upgrade -y | ||
|
||
RUN apt-get install -y curl wget software-properties-common gnupg2 winbind xvfb | ||
|
||
RUN dpkg --add-architecture i386 | ||
RUN wget -nc https://dl.winehq.org/wine-builds/winehq.key | ||
RUN apt-key add winehq.key | ||
RUN add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main' | ||
RUN apt-get update | ||
RUN apt-get install -y winehq-stable | ||
|
||
RUN apt-get install -y winetricks | ||
|
||
RUN apt-get clean -y && apt-get autoremove -y | ||
|
||
ENV WINEPREFIX /config/wine/ | ||
|
||
RUN \ | ||
APP_ICON_URL=https://www.backblaze.com/pics/cloud-blaze.png && \ | ||
install_app_icon.sh "$APP_ICON_URL" | ||
|
||
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y locales | ||
|
||
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \ | ||
dpkg-reconfigure --frontend=noninteractive locales && \ | ||
update-locale LANG=en_US.UTF-8 | ||
|
||
ENV LANG en_US.UTF-8 | ||
|
||
ENV APP_NAME="Backblaze Personal Backup" | ||
|
||
# Disable WINE Debug messages | ||
ENV WINEDEBUG -all | ||
|
||
EXPOSE 5900 | ||
|
||
COPY startapp.sh /startapp.sh |