From d984f430f7a9be6cac3e45d837d3371003b5ad83 Mon Sep 17 00:00:00 2001 From: Jason Chan Date: Sun, 18 Sep 2022 18:44:26 +0800 Subject: [PATCH] Add files via upload --- Dockerfile | 12 ++++++++++++ platform | 1 + 2 files changed, 13 insertions(+) create mode 100644 Dockerfile create mode 100644 platform diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..37b39d7 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM openaustralia/buildstep:early_release + +COPY requirements.txt . + +RUN apt update -y \ + && apt-get install -y python3-pip + +RUN pip3 install -r requirements.txt + +RUN useradd morph + +USER morph \ No newline at end of file diff --git a/platform b/platform new file mode 100644 index 0000000..28388f8 --- /dev/null +++ b/platform @@ -0,0 +1 @@ +early_release \ No newline at end of file