-
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.
Merge pull request #85 from JonathanTreffler/feat/add-ubuntu22-docker…
…file (feat): add ubuntu22 image + build process, update docs
- Loading branch information
Showing
6 changed files
with
103 additions
and
7 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
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
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,36 @@ | ||
FROM jlesage/baseimage-gui:ubuntu-22.04-v4@sha256:bb71746f83b7f048b1bf24e06413510b59558eb26c9673abdea688024b895ba2 | ||
|
||
RUN apt-get update | ||
|
||
RUN apt-get install -y curl software-properties-common gnupg2 winbind xvfb | ||
|
||
RUN dpkg --add-architecture i386 | ||
RUN curl -O 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/ jammy 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 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 | ||
RUN chmod +x /startapp.sh |
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