diff options
author | Mark Powers <mark@marks.kitchen> | 2023-01-02 21:36:54 -0600 |
---|---|---|
committer | Mark Powers <mark@marks.kitchen> | 2023-01-02 21:36:54 -0600 |
commit | d0969bd6886a81dc59c5c02b12468a97b3c4cf58 (patch) | |
tree | ef44a9d1a0cf29e582f5eff90f5f6a33092fd58f /Dockerfile |
Initial commit
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 10 |
1 files changed, 10 insertions, 0 deletions
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 |