docker build
command is not building the docker machine I am trying to make. I searched all over the net, I couldn't find an answer. Below is my dockerfile
. I think the problem starts with fetch http://dl-cdn.alpinelinux.org/alpine/v3.4/main/x86_64/APKINDEX.tar.gz
FROM python:3.5-alpine
MAINTAINER ******* <code@******.com>
ENV INSTALL_PATH /web
RUN mkdir -p ${INSTALL_PATH}
COPY . ${INSTALL_PATH}
WORKDIR ${INSTALL_PATH}
RUN apk add --no-cache --virtual .build-deps build-base libffi-dev postgresql-dev uwsgi-python supervisor \
&& pip install --trusted-host github.com --process-dependency-links -e . \
&& find /usr/local \( -type d -a -name test -o -name tests \) \
-o \( -type f -a -name '*.pyc' -o -name '*.pyo' \) -exec rm -rf '{}' + \
&& runDeps="$(scanelf --needed --nobanner --recursive /usr/local \
| awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' \
| sort -u | xargs -r apk info --installed | sort -u \
)" \
&& apk add --virtual .rundeps $runDeps && apk del .build-deps
The output is below:
Sending build context to Docker daemon 11.26kB
Step 1/7 : FROM python:3.5-alpine
---> 9691bd606b6d
Step 2/7 : MAINTAINER ******* <code@*******.com>
---> Using cache
---> 71df6ccd567e
Step 3/7 : ENV INSTALL_PATH /web
---> Using cache
---> 06ced81d3941
Step 4/7 : RUN mkdir -p ${INSTALL_PATH}
---> Using cache
---> ad857704376d
Step 5/7 : COPY . ${INSTALL_PATH}
---> Using cache
---> c6ddc57309a2
Step 6/7 : WORKDIR ${INSTALL_PATH}
---> Using cache
---> 62f0dbfaa3eb
Step 7/7 : RUN apk add --no-cache --virtual .build-deps build-base libffi-dev postgresql-dev uwsgi-python supervisor && pip install --trusted-host github.com --process-dependency-links -e . && find /usr/local \( -type d -a -name test -o -name tests \) -o \( -type f -a -name '*.pyc' -o -name '*.pyo' \) -exec rm -rf '{}' + && runDeps="$(scanelf --needed --nobanner --recursive /usr/local | awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' | sort -u | xargs -r apk info --installed | sort -u )" && apk add --virtual .rundeps $runDeps && apk del .build-deps
---> Running in 1abedb8ada2a
fetch http://dl-cdn.alpinelinux.org/alpine/v3.4/main/x86_64/APKINDEX.tar.gz
WARNING: Ignoring http://dl-cdn.alpinelinux.org/alpine/v3.4/main/x86_64/APKINDEX.tar.gz: temporary error (try again later)
fetch http://dl-cdn.alpinelinux.org/alpine/v3.4/community/x86_64/APKINDEX.tar.gz
WARNING: Ignoring http://dl-cdn.alpinelinux.org/alpine/v3.4/community/x86_64/APKINDEX.tar.gz: temporary error (try again later)
ERROR: unsatisfiable constraints:
.build-deps-0:
masked in: cache
satisfies: world[.build-deps]
build-base (missing):
required by:
libffi-dev (missing):
required by:
postgresql-dev (missing):
required by:
uwsgi-python (missing):
required by:
supervisor (missing):
required by:
The command '/bin/sh -c apk add --no-cache --virtual .build-deps build-base libffi-dev postgresql-dev uwsgi-python supervisor && pip install --trusted-host github.com --process-dependency-links -e . && find /usr/local \( -type d -a -name test -o -name tests \) -o \( -type f -a -name '*.pyc' -o -name '*.pyo' \) -exec rm -rf '{}' + && runDeps="$(scanelf --needed --nobanner --recursive /usr/local | awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' | sort -u | xargs -r apk info --installed | sort -u )" && apk add --virtual .rundeps $runDeps && apk del .build-deps' returned a non-zero code: 6