ubuntu_16_04.dockerfile 567 B

123456789101112131415161718
  1. FROM ubuntu:16.04
  2. ENV no_proxy="127.0.0.1,localhost,kalliope.fr"
  3. # pico2wav is a multiverse package
  4. RUN echo "deb http://us.archive.ubuntu.com/ubuntu/ xenial multiverse" >> /etc/apt/sources.list
  5. # install packages
  6. RUN apt-get update && apt-get install -y \
  7. git python-dev libsmpeg0 libttspico-utils libsmpeg0 flac dialog \
  8. libffi-dev libffi-dev libssl-dev portaudio19-dev build-essential \
  9. sox libatlas3-base mplayer wget \
  10. && rm -rf /var/lib/apt/lists/*
  11. # Install the last PIP
  12. RUN wget https://bootstrap.pypa.io/get-pip.py
  13. RUN python get-pip.py