Dockerfile COPY from a Windows file system to a docker container
First, change your Dockerfile
to:
FROM php:7.1-apache
LABEL maintainer="[email protected]"
COPY MyAgsourceAPI /var/www
Then, to go your code
directory: cd Users/rburton/code
.
Within that directory, run:
docker build -t <image_name> .