forked from dvorka/mindforger
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing locale in Docker file which resolves dvorka#805
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,15 +25,17 @@ FROM ubuntu:16.04 | |
|
||
MAINTAINER "Martin Dvorak" <[email protected]> | ||
|
||
# IMPROVE: run MF under normal user | ||
|
||
# update APT, add MindForger PPA and install MindForger | ||
RUN apt-get update && \ | ||
apt-get install -y locales && \ | ||
locale-gen en_US en_US.UTF-8 && \ | ||
apt-get -y install software-properties-common && \ | ||
add-apt-repository -y ppa:ultradvorka/productivity && \ | ||
apt-get -y update && \ | ||
apt-get -y install mindforger | ||
|
||
# ensure locale despite locale-gen | ||
ENV LANG=en_US.UTF-8 LANGUAGE=en_US | ||
ENV QT_GRAPHICSSYSTEM native | ||
|
||
RUN useradd -ms /bin/bash mindforger-user | ||
|