Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

optimization debian package manager tweaks #493

Closed
wants to merge 1 commit into from
Closed
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/debian10/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ FROM debian:buster
MAINTAINER Owen O'Malley <omalley@apache.org>

RUN apt-get update
RUN apt-get install -y \
RUN apt-get --no-install-recommends install -y \
cmake \
gcc \
g++ \
Expand Down
2 changes: 1 addition & 1 deletion docker/debian8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ MAINTAINER Owen O'Malley <owen@hortonworks.com>
ADD sources.list apt.conf /etc/apt/

RUN apt-get update
RUN apt-get install -y \
RUN apt-get --no-install-recommends install -y \
autoconf \
cmake \
gcc \
Expand Down
2 changes: 1 addition & 1 deletion docker/debian9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ FROM debian:9
MAINTAINER Owen O'Malley <owen@hortonworks.com>

RUN apt-get update
RUN apt-get install -y \
RUN apt-get --no-install-recommends install -y \
cmake \
gcc \
g++ \
Expand Down
4 changes: 2 additions & 2 deletions docker/ubuntu14/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ FROM ubuntu:14.04
MAINTAINER Owen O'Malley <owen@hortonworks.com>

RUN apt-get update
RUN apt-get install -y software-properties-common
RUN apt-get --no-install-recommends install -y software-properties-common
RUN add-apt-repository -y ppa:openjdk-r/ppa
RUN apt-get update
RUN apt-get install -y \
RUN apt-get --no-install-recommends install -y \
autoconf \
cmake \
gcc \
Expand Down
4 changes: 2 additions & 2 deletions docker/ubuntu16-clang5/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ FROM ubuntu:16.04
MAINTAINER Owen O'Malley <owen@hortonworks.com>

RUN apt-get update
RUN apt-get install -y wget software-properties-common
RUN apt-get --no-install-recommends install -y wget software-properties-common
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
RUN apt-add-repository "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-5.0 main"
RUN apt-get update
RUN apt-get install -y \
RUN apt-get --no-install-recommends install -y \
cmake \
default-jdk \
clang-5.0 \
Expand Down
2 changes: 1 addition & 1 deletion docker/ubuntu16/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ FROM ubuntu:16.04
MAINTAINER Owen O'Malley <owen@hortonworks.com>

RUN apt-get update
RUN apt-get install -y \
RUN apt-get --no-install-recommends install -y \
cmake \
default-jdk \
gcc \
Expand Down
2 changes: 1 addition & 1 deletion docker/ubuntu18/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ MAINTAINER Owen O'Malley <owen@hortonworks.com>

RUN ln -fs /usr/share/zoneinfo/America/Los_Angeles /etc/localtime
RUN apt-get update
RUN apt-get install -y \
RUN apt-get --no-install-recommends install -y \
cmake \
gcc \
g++ \
Expand Down
2 changes: 1 addition & 1 deletion site/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ MAINTAINER ORC team <dev@orc.apache.org>

RUN ln -fs /usr/share/zoneinfo/America/Los_Angeles /etc/localtime
RUN apt-get update
RUN apt-get install -y \
RUN apt-get --no-install-recommends install -y \
g++ \
gcc \
git \
Expand Down
2 changes: 1 addition & 1 deletion snap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ If you don't use VM, you'll need to install snapcraft, which is the tool to buil
snaps.

```bash
% sudo apt-get install snapcraft
% sudo apt-get --no-install-recommends install snapcraft
```

In both cases, go into the snap directory and build the snap:
Expand Down
2 changes: 1 addition & 1 deletion snap/vagrant-provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@

apt-get update
DEBIAN_FRONTEND=noninteractive apt-get upgrade -y
apt-get install -y \
apt-get --no-install-recommends install -y \
emacs-nox \
snapcraft