Skip to content

Commit

Permalink
updates and fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed May 30, 2017
1 parent 9bb95aa commit 79d82a1
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
7 changes: 5 additions & 2 deletions consul/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:latest
FROM alpine:3.5
LABEL maintainer "Jessie Frazelle <[email protected]>"

ENV PATH /go/bin:/usr/local/go/bin:$PATH
Expand Down Expand Up @@ -34,7 +34,10 @@ RUN buildDeps=' \
&& XC_ARCH="amd64" XC_OS="linux" make all \
&& mv bin/consul /usr/bin/ \
&& cd ui \
&& gem install bundler io-console --no-ri --no-rdoc \
&& gem install \
bundler \
io-console \
--no-ri --no-rdoc \
&& bundle install \
&& make dist \
&& mkdir -p /usr/src/consul \
Expand Down
6 changes: 3 additions & 3 deletions irssi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ RUN set -x \
# gpg: key DDBEF0E1: public key "The Irssi project <[email protected]>" imported
&& gpg --no-tty --keyserver ha.pool.sks-keyservers.net --recv-keys 7EE65E3082A5FB06AC7C368D00CCB587DDBEF0E1 \
&& gpg --batch --verify /tmp/irssi.tar.xz.asc /tmp/irssi.tar.xz \
&& rm -r "$GNUPGHOME" /tmp/irssi.tar.xz.asc \
&& rm -rf "$GNUPGHOME" /tmp/irssi.tar.xz.asc \
&& mkdir -p /usr/src \
&& tar -xJf /tmp/irssi.tar.xz -C /usr/src \
&& rm /tmp/irssi.tar.xz \
Expand All @@ -65,7 +65,7 @@ RUN set -x \
# gpg: key 42C2ABAD: public key "OTR Dev Team (Signing Key) <[email protected]>" imported
&& curl -sSL https://otr.cypherpunks.ca/gpgkey.asc | gpg --no-tty --import \
&& gpg --batch --verify /tmp/libotr.tar.gz.asc /tmp/libotr.tar.gz \
&& rm -r "$GNUPGHOME" /tmp/libotr.tar.gz.asc \
&& rm -rf "$GNUPGHOME" /tmp/libotr.tar.gz.asc \
&& mkdir -p /usr/src/libotr \
&& tar -xzf /tmp/libotr.tar.gz -C /usr/src/libotr --strip-components 1 \
&& rm /tmp/libotr.tar.gz \
Expand All @@ -81,7 +81,7 @@ RUN set -x \
&& curl -sSL "https://github.com/cryptodotis/irssi-otr/archive/v${IRSSI_OTR_VERSION}.tar.gz" -o /tmp/irssi-otr.tar.gz \
&& mkdir -p /usr/src/irssi-otr \
&& tar -xf /tmp/irssi-otr.tar.gz -C /usr/src/irssi-otr --strip-components 1 \
&& rm /tmp/irssi-otr.tar.gz \
&& rm -f /tmp/irssi-otr.tar.gz \
&& ( \
cd /usr/src/irssi-otr \
&& ./bootstrap \
Expand Down
1 change: 1 addition & 0 deletions lpass/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ RUN set -x \
cmake \
curl-dev \
git \
libressl-dev \
libxml2-dev \
&& git clone --depth 1 https://github.com/LastPass/lastpass-cli.git /usr/src/lastpass-cli \
&& ( \
Expand Down
1 change: 1 addition & 0 deletions tarsnap/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ RUN set -x \
make \
openssl-dev \
perl-digest-sha1 \
perl-utils \
tar \
zlib-dev \
&& curl -sSL "https://www.tarsnap.com/download/tarsnap-autoconf-${TARSNAP_VERSION}.tgz" -o /tmp/tarsnap.tgz \
Expand Down
2 changes: 1 addition & 1 deletion tor-browser/alpha/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN useradd --create-home --home-dir $HOME user \

ENV LANG C.UTF-8

ENV TOR_VERSION 7.0a2
ENV TOR_VERSION 7.0a4
ENV TOR_FINGERPRINT 0x4E2C6E8793298290

# download tor and check signature
Expand Down
2 changes: 1 addition & 1 deletion tor-browser/stable/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN useradd --create-home --home-dir $HOME user \

ENV LANG C.UTF-8

ENV TOR_VERSION 7.0a4
ENV TOR_VERSION 6.5.2
ENV TOR_FINGERPRINT 0x4E2C6E8793298290

# download tor and check signature
Expand Down

0 comments on commit 79d82a1

Please sign in to comment.