From d0969bd6886a81dc59c5c02b12468a97b3c4cf58 Mon Sep 17 00:00:00 2001 From: Mark Powers Date: Mon, 2 Jan 2023 21:36:54 -0600 Subject: Initial commit --- Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..412b929 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM ubuntu + +RUN apt update -y && apt install -y python3-pip +RUN pip install psycopg2-binary + +COPY index.html /src/index.html +COPY server.py /src/server.py + +WORKDIR /src +CMD python3 server.py -- cgit v1.2.3