Fix Dockerfiles for broken Go compile and remove temp memcache install
This commit is contained in:
parent
6c43b7ff0d
commit
46b0c075f6
2 changed files with 4 additions and 7 deletions
|
@ -4,9 +4,6 @@ FROM quay.io/quay/quay-base:latest
|
|||
|
||||
RUN adduser memcached --disabled-login --system
|
||||
|
||||
# TEMP FIX
|
||||
RUN apt-get update && apt-get install -y memcached
|
||||
|
||||
WORKDIR $QUAYDIR
|
||||
|
||||
COPY requirements.txt requirements-tests.txt ./
|
||||
|
|
|
@ -55,15 +55,15 @@ RUN apt-get update && apt-get upgrade -y \
|
|||
python-pip \
|
||||
python-virtualenv \
|
||||
yarn=0.22.0-1 \
|
||||
w3m # 19DEC2017
|
||||
w3m # 22MAR2018
|
||||
|
||||
# Install cfssl
|
||||
RUN mkdir /gocode
|
||||
ENV GOPATH /gocode
|
||||
RUN curl -O https://storage.googleapis.com/golang/go1.6.linux-amd64.tar.gz && \
|
||||
tar -xvf go1.6.linux-amd64.tar.gz && \
|
||||
RUN curl -O https://storage.googleapis.com/golang/go1.10.linux-amd64.tar.gz && \
|
||||
tar -xvf go1.10.linux-amd64.tar.gz && \
|
||||
mv go /usr/local && \
|
||||
rm -rf go1.6.linux-amd64.tar.gz && \
|
||||
rm -rf go1.10.linux-amd64.tar.gz && \
|
||||
/usr/local/go/bin/go get -u github.com/cloudflare/cfssl/cmd/cfssl && \
|
||||
/usr/local/go/bin/go get -u github.com/cloudflare/cfssl/cmd/cfssljson && \
|
||||
cp /gocode/bin/cfssljson /bin/cfssljson && \
|
||||
|
|
Reference in a new issue