HW2 Dockerfile results in execution error upon building the image docker build -t test . with error message:
Package 'python-dev' has no installation candidate
Issue is resolved when modifying python-dev to python-dev-is-python3 in the RUN step.
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
build-essential \
curl \
git \
python3-pip \
python-setuptools \
python-dev-is-python3 \
This issue and resolution is also identified in the Google Doc.
HW2 Dockerfile results in execution error upon building the image
docker build -t test .with error message:Issue is resolved when modifying
python-devtopython-dev-is-python3in the RUN step.This issue and resolution is also identified in the Google Doc.