Skip to content

Commit

Permalink
Fixing locale in Docker file which resolves dvorka#805
Browse files Browse the repository at this point in the history
  • Loading branch information
dvorka committed Sep 25, 2018
1 parent d7b7f55 commit 71ed113
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build/docker/mindforger/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 71ed113

Please sign in to comment.