From f2af3959a43ec2fe2ef459dc5a2c44a7c0231235 Mon Sep 17 00:00:00 2001 From: s0llvan <178677095+s0llvan@users.noreply.github.com> Date: Sat, 30 Nov 2024 16:36:00 +0100 Subject: [PATCH] feature: add initial Dockerfile --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c403071 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM nginx:latest + +COPY index.html /usr/share/nginx/html/ +COPY css/ /usr/share/nginx/html/css/ +COPY js/ /usr/share/nginx/html/js/ +COPY img/ /usr/share/nginx/html/img/ +COPY svg/ /usr/share/nginx/html/svg/ + +EXPOSE 80