@@ -48,20 +48,20 @@ grab a cup of coffee/tea in the meantime.
4848git clone https://github.com/TokTok/apidsl
4949cd apidsl
5050# Build "apidsl" Docker image based on Dockerfile instructions
51- sudo docker build -t apidsl.
51+ docker build -t apidsl.
5252# Run the image, i.e. execute the CMD part of the Dockerfile, mounting the
5353# current directory (the APIDSL repository) as /apidsl inside the image
54- sudo docker run --rm -v$PWD :/apidsl apidsl
54+ docker run --rm -v$PWD :/apidsl apidsl
5555# Make sure apigen.native has appeared in the current directory
5656ls -lbh apigen.native
5757# Copy it over to /usr/local/bin
5858sudo cp ./apigen.native /usr/local/bin/
5959# Delete the image we have built
60- sudo docker rmi apidsl debian:jessie-slim
60+ docker rmi apidsl debian:jessie-slim
6161# Make sure there are no containers or images left, as
6262# they take a lot of disk space and are not needed anymore
63- sudo docker ps -a
64- sudo docker images -a
63+ docker ps -a
64+ docker images -a
6565```
6666
6767You should now have` /usr/local/bin/apigen.native ` .