From a4e857239597ba01d9750306c67fc1adfeecbf45 Mon Sep 17 00:00:00 2001 From: Jack Hadrill Date: Sat, 21 Mar 2020 15:14:57 +0000 Subject: [PATCH] Define development environment. --- .gitignore | 1 + Dockerfile | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 Dockerfile diff --git a/.gitignore b/.gitignore index 9cb84e1..c6b07f7 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ !.vscode/launch.json !.vscode/extensions.json *.code-workspace +.devcontainer # ---> Python # Byte-compiled / optimized / DLL files diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..14d4102 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM python:3 + +RUN pip install --no-cache-dir numpy tensorflow \ No newline at end of file