Closed savionlee closed 7 years ago
Solved my Windows Docker build problem by editing the Dockerfile to be as such.
FROM jaskipper/alpine-apache-php7
MAINTAINER ChurchCRM
RUN apk update
RUN apk upgrade --repository http://dl-4.alpinelinux.org/alpine/edge/community \
--repository https://nl.alpinelinux.org/alpine/edge/main
# Make info file about this build
# printf "Build of skipper/alpine-apache, date: %s\n" `date -u +"%Y-%m-%dT%H:%M:%SZ"` >> /etc/BUILD
RUN apk add --no-cache \
jq \
php7-session@community \
php7-pdo@community \
php7-xml@community \
php7-exif@community \
php7-pdo_mysql@community \
php7-gettext@community \
php7-iconv@community
RUN mkdir /web/churchcrm
COPY httpd.conf /etc/apache2
COPY 60-churchcrm /etc/run_always
RUN chmod +x /etc/run_always/60-churchcrm
# Enable Terminal
ENV TERM xterm
The last PR built perfectly on hub.docker.com.
System: Windows 10 Home, Docker Tools 64
After changing the default passwords, I tried to build and receive this error
Any Ideas as to the issue?