commit 4f6863c063d13d5c200c544059ab49d92d5620b2 Author: shnee Date: Fri Nov 27 14:14:40 2020 -0500 Initial commit diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f7daeae --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM ubuntu + +RUN apt-get update && \ + apt-get install -y python3 && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* +