How to map the host OS file to the container at the time of container build process
问题 docker-compose.yml: version: '3' services: ezmove: volumes: - /host-dir:/home/container-dir build: context: . args: BRANCH: develop Dockerfile: FROM appcontainers/ubuntu:xenial MAINTAINER user <user> RUN apt-get update -y --no-install-recommends \ && apt-get install -y --no-install-recommends python3.5-minimal python3.5-venv \ && apt-get install -y --no-install-recommends git \ && apt-get install -y --no-install-recommends python-pip \ && pip install --upgrade pip \ && rm -rf /var/lib/apt