From 70b2fac2ea38d95233f20aabbb44a2fb574561f5 Mon Sep 17 00:00:00 2001 From: "Peter J. Keleher" <keleher@cs.umd.edu> Date: Wed, 4 Sep 2024 09:28:54 -0400 Subject: [PATCH] auto --- assign0.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/assign0.md b/assign0.md index 193b540..66502fb 100644 --- a/assign0.md +++ b/assign0.md @@ -25,11 +25,13 @@ in `Dockerfile`. 1. [Install docker](https://www.docker.com/get-started/) +1. Insert `WORKDIR /424` as the third line of your Dockerfile, if it is not already there. 1. Build the container image as follows: `docker build --rm -t 424 .` 1. Verify that the imeage has been build in your docker Desktop. Assuming you are using bash, run the image: `docker run -it -v $(pwd):/424 424` 1. For *tcsh* use ``docker run -it -v `pwd`:/424 424``. - 1. On **windows**, the following worked for me: `docker run -it -v "${PWD}:/424" 424`. + 1. On **windows**, the following worked for me: `docker run -it -v "${PWD}:/424" 424`. + 1. `cd /424` from within the container. You are now inside the docker container in a directory (`/424`) that -- GitLab