From 7337f1e913cd4399bd7a2ca94c2958fd9d99b33c Mon Sep 17 00:00:00 2001 From: Paul Kuruvilla Date: Wed, 9 Feb 2022 21:01:33 +0000 Subject: [PATCH] Syncing with codecrafters-io/languages Created by https://github.com/codecrafters-io/languages --- README.md | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index a158b5f..088613d 100644 --- a/README.md +++ b/README.md @@ -23,20 +23,15 @@ git push origin master That's all! -# Setup for stages 2 & beyond +# Stage 2 and beyond -1. Ensure you have [Docker](https://www.docker.com/) installed locally. -1. Follow the details below ("Running your program locally") to run your Docker - implementation, which is implemented in `src/main.rs`. -1. Commit your changes and run `git push origin master` to submit your solution - to CodeCrafters. Test output will be streamed to your terminal. +You'll use linux-specific syscalls in this challenge. so we'll run your code +_inside_ a Docker container. -### Running your program locally +Please ensure you have [Docker installed](https://docs.docker.com/get-docker/) +locally. -Since you'll need to use linux-specific syscalls in this challenge, we'll run -your code _inside_ a Docker container. - -Start by adding a [shell alias](https://shapeshed.com/unix-alias/): +Next, add a [shell alias](https://shapeshed.com/unix-alias/): ```sh alias mydocker='docker build -t mydocker . && docker run --cap-add="SYS_ADMIN" mydocker'