Browse Source

fix broken docker build

Current docker build output: /bin/sh: 1: locale-gen: not found
Locale-gen is not provided anymore by ubuntu base image, so it must be installed beforehand.
pull/425/head
cguentherTUChemnitz 8 years ago committed by GitHub
parent
commit
dccbbaebf3
  1. 2
      Dockerfile

2
Dockerfile

@ -38,6 +38,8 @@ FROM ubuntu:xenial @@ -38,6 +38,8 @@ FROM ubuntu:xenial
MAINTAINER Simon Eisenmann <simon@struktur.de>
# Set locale.
RUN apt-get clean && apt-get update
RUN apt-get install locales
RUN locale-gen --no-purge en_US.UTF-8
ENV LC_ALL en_US.UTF-8

Loading…
Cancel
Save