From 6eeeb8bcf3a5cdd8de29b73f476774d009af3252 Mon Sep 17 00:00:00 2001 From: GitInno <86991526+gitnnolabs@users.noreply.github.com> Date: Thu, 15 Feb 2024 14:26:32 -0300 Subject: [PATCH] Adiciona o Dockerfile --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..729dc34 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM nginx:latest +COPY css /www/data/static/css +COPY img /www/data/static/img +COPY js /www/data/static/js +EXPOSE 80 +CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file