mirror of
https://github.com/GNS3/gns3-server
synced 2024-12-01 04:38:12 +00:00
Merge pull request #1302 from nabilbendafi/master
Fix missing 'locales' package in base image
This commit is contained in:
commit
2111f549c9
@ -5,7 +5,6 @@ FROM ubuntu:16.04
|
|||||||
ENV DEBIAN_FRONTEND noninteractive
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
|
|
||||||
# Set the locale
|
# Set the locale
|
||||||
RUN locale-gen en_US.UTF-8
|
|
||||||
ENV LANG en_US.UTF-8
|
ENV LANG en_US.UTF-8
|
||||||
ENV LANGUAGE en_US:en
|
ENV LANGUAGE en_US:en
|
||||||
ENV LC_ALL en_US.UTF-8
|
ENV LC_ALL en_US.UTF-8
|
||||||
@ -13,6 +12,7 @@ ENV LC_ALL en_US.UTF-8
|
|||||||
RUN apt-get update && apt-get install -y software-properties-common
|
RUN apt-get update && apt-get install -y software-properties-common
|
||||||
RUN add-apt-repository ppa:gns3/ppa
|
RUN add-apt-repository ppa:gns3/ppa
|
||||||
RUN apt-get update && apt-get install -y \
|
RUN apt-get update && apt-get install -y \
|
||||||
|
locales \
|
||||||
python3-pip \
|
python3-pip \
|
||||||
python3-dev \
|
python3-dev \
|
||||||
qemu-system-x86 \
|
qemu-system-x86 \
|
||||||
@ -21,6 +21,8 @@ RUN apt-get update && apt-get install -y \
|
|||||||
libvirt-bin \
|
libvirt-bin \
|
||||||
x11vnc
|
x11vnc
|
||||||
|
|
||||||
|
RUN locale-gen en_US.UTF-8
|
||||||
|
|
||||||
# Install uninstall to install dependencies
|
# Install uninstall to install dependencies
|
||||||
RUN apt-get install -y vpcs ubridge
|
RUN apt-get install -y vpcs ubridge
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user