Skip to content
This repository has been archived by the owner on Nov 5, 2022. It is now read-only.

optimization debian package manager tweaks #35

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-images/festival/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

FROM langtech/base-language-resources:v1_1

RUN apt-get update && apt-get install -y \
RUN apt-get update && apt-get --no-install-recommends install -y \
automake \
bc \
curl \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/language-resources/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ENV NODEJS_VERSION="v8.9.3"
ENV BAZEL_VERSION="0.8.0"
ENV ANDROID_TOOLS_VERSION="3859397"

RUN apt-get update && apt-get install -y \
RUN apt-get update && apt-get --no-install-recommends install -y \
sox \
curl \
libicu-dev \
Expand Down
2 changes: 1 addition & 1 deletion docker-images/merlin/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ FROM langtech/base-festival:v1_1
# Required by run_merlin.py
ENV USER root

RUN apt-get update && apt-get install -y \
RUN apt-get update && apt-get --no-install-recommends install -y \
autoconf \
build-essential \
ca-certificates \
Expand Down
2 changes: 1 addition & 1 deletion mul_034/script_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

# Non-hermetic dependency on PyICU. Install this in one of several ways:
# * pip install PyICU
# * apt-get install python-pyicu python3-icu
# * apt-get --no-install-recommends install -y python-pyicu python3-icu
import icu

from utils import utf8
Expand Down
2 changes: 1 addition & 1 deletion my/binom_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

import sys

from scipy import stats # Debian/Ubuntu: apt-get install python-scipy
from scipy import stats # Debian/Ubuntu: apt-get --no-install-recommends install -y python-scipy


def UpperTailPValue(successes, trials, prob):
Expand Down
2 changes: 1 addition & 1 deletion travis/before_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ else
## Fix this when Xenial becomes available.
# sudo add-apt-repository ppa:suawekk/trusty-backports -y
# sudo apt-get update -qq
sudo apt-get install -q -y libicu-dev
sudo apt-get --no-install-recommends install -y -q libicu-dev
fi

curl -L "https://github.com/bazelbuild/bazel/releases/download/${BAZEL}/bazel-${BAZEL}-installer-${MY_OS}-x86_64.sh" > bazel-installer.sh
Expand Down
2 changes: 1 addition & 1 deletion utils/icu_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

# Non-hermetic dependency on PyICU. Install this in one of several ways:
# * pip install PyICU
# * apt-get install python-pyicu python3-icu
# * apt-get --no-install-recommends install -y python-pyicu python3-icu
import icu

from utils import utf8
Expand Down