環境
- docker for windows (Version 18.06.1-ce-win73)
- Windows 10 Pro (Version 1803)
事象
-
docker-compose build をした際に、以下のようなエラーがでて先へ進めなくなった
Temporary failure resolving 'deb.debian.org'
-
Dockerfile は以下のような感じ
FROM php:7.2-apache
RUN apt-get update\
&& apt-get install -y --no-install-recommends git\
&& apt-get install -y --no-install-recommends openssh-client\
&& apt-get install -y --no-install-recommends zip\
&& apt-get install -y --no-install-recommends sudo\
&& apt-get install -y --no-install-recommends supervisor\
&& apt-get install -y --no-install-recommends wget\
&& apt-get install -y --no-install-recommends vim\
&& apt-get upgrade -y\
&& apt-get clean -y