update versions

Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
Jess Frazelle 2017-08-21 14:10:17 -04:00
parent 3db9b8a923
commit 44470c8b36
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3
4 changed files with 3 additions and 31 deletions

View File

@ -42,7 +42,7 @@ RUN apt-get update && apt-get install -y \
--no-install-recommends \ --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
ENV ATOM_VERSION 1.19.1 ENV ATOM_VERSION 1.19.2
# download the source # download the source
RUN buildDeps=' \ RUN buildDeps=' \

View File

@ -1,28 +0,0 @@
FROM alpine:latest
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
RUN apk add --no-cache \
ca-certificates \
curl \
libressl
ENV CPUMINER_VERSION v2.5.0
RUN set -x \
&& apk add --no-cache --virtual .build-deps \
autoconf \
automake \
build-base \
curl-dev \
git \
&& git clone --depth 1 --branch "${CPUMINER_VERSION}" https://github.com/pooler/cpuminer.git /usr/src/cpuminer \
&& ( \
cd /usr/src/cpuminer \
&& ./autogen.sh \
&& ./configure CFLAGS="-O3" \
&& make \
&& make install \
) \
&& rm -rf /usr/src/cpuminer \
&& apk del .build-deps
ENTRYPOINT [ "minerd" ]

View File

@ -14,7 +14,7 @@ RUN apk add --no-cache \
python python
# Get the source # Get the source
ENV PLEXPY_VERSION v1.4.21 ENV PLEXPY_VERSION v1.4.22
RUN git clone https://github.com/drzoidberg33/plexpy.git /opt/plexpy \ RUN git clone https://github.com/drzoidberg33/plexpy.git /opt/plexpy \
&& ( \ && ( \
cd /opt/plexpy \ cd /opt/plexpy \

View File

@ -7,7 +7,7 @@ ENV GOPATH /go
RUN apk --no-cache add \ RUN apk --no-cache add \
ca-certificates ca-certificates
ENV VAULT_VERSION v0.8.0-rc1 ENV VAULT_VERSION v0.8.1
RUN buildDeps=' \ RUN buildDeps=' \
bash \ bash \