Skip to content

Commit

Permalink
Update Dockerfile (#79)
Browse files Browse the repository at this point in the history
* Update Dockerfile

* best practice for apt in Dockerfile
* rtlamr no longer depends on fftw
  • Loading branch information
powermik authored and bemasher committed Oct 20, 2017
1 parent 8a0e86e commit 152b416
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
FROM ubuntu:14.04

RUN apt-get update

RUN apt-get install --no-install-recommends -y \
RUN apt-get update && \
apt-get install --no-install-recommends -y \
git-core \
bzr \
mercurial \
curl \
ca-certificates \
build-essential \
libfftw3-dev
build-essential && \
rm -rf /var/lib/apt/lists/*

# Download and install Go
RUN curl -s https://storage.googleapis.com/golang/go1.3.linux-amd64.tar.gz | tar -v -C /usr/local -xz
Expand Down

0 comments on commit 152b416

Please sign in to comment.