diff --git a/README.md b/README.md
index e1fc1d4023e313116dc2cdda7d45584b8a5f48cc..d9b0b26aa49df57403393add5b5ec8946636a350 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,7 @@
-# simavr-ci-test
+# Simavr Environment
 
+This repository contains [docker](https://www.docker.com/get-started) images that contain ubuntu linux with [compilers](https://www.geeksforgeeks.org/gcc-command-in-linux-with-examples/) and [simavr](https://github.com/buserror/simavr) simulator to help one test embedded C code without an actual device.
+
+## Usage
+
+No planned usage directly, but you can
diff --git a/autograder/Dockerfile b/autograder/Dockerfile
index ee68773578c9a9f193cb170d0d3aba97226baa3a..b2d961acf7bbaca062a032cacce4d0621ff1f4b2 100644
--- a/autograder/Dockerfile
+++ b/autograder/Dockerfile
@@ -25,7 +25,7 @@ RUN apt-get update && \
   sudo \
   && ln -fs /usr/share/zoneinfo/Europe/Helsinki /etc/localtime \
   && DEBIAN_FRONTEND="noninteractive" dpkg-reconfigure --frontend noninteractive tzdata \
-  rm -rf /var/lib/apt/lists/*
+  && rm -rf /var/lib/apt/lists/*
 
 # Install autodriver
 WORKDIR /home