diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..fd27f2f --- /dev/null +++ b/.dockerignore @@ -0,0 +1,2 @@ +dev_env +execu.bat \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a45588f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM python:3 + +WORKDIR /app + +COPY requirements.txt ./ +RUN pip install --no-cache-dir -r requirements.txt + +COPY . . + +CMD [ "python", "gestaoRaul/manage.py", "runserver", "0.0.0.0:8000" ] \ No newline at end of file diff --git a/gest b/gest deleted file mode 100644 index e69de29..0000000 diff --git a/gestaoRaul/comandas/__pycache__/htmx_views.cpython-312.pyc b/gestaoRaul/comandas/__pycache__/htmx_views.cpython-312.pyc index 61bd42d..899e81c 100644 Binary files a/gestaoRaul/comandas/__pycache__/htmx_views.cpython-312.pyc and b/gestaoRaul/comandas/__pycache__/htmx_views.cpython-312.pyc differ diff --git a/gestaoRaul/comandas/__pycache__/urls.cpython-312.pyc b/gestaoRaul/comandas/__pycache__/urls.cpython-312.pyc index 9854fad..32d3bb8 100644 Binary files a/gestaoRaul/comandas/__pycache__/urls.cpython-312.pyc and b/gestaoRaul/comandas/__pycache__/urls.cpython-312.pyc differ diff --git a/gestaoRaul/comandas/__pycache__/views.cpython-312.pyc b/gestaoRaul/comandas/__pycache__/views.cpython-312.pyc index 1216c88..3c0efcc 100644 Binary files a/gestaoRaul/comandas/__pycache__/views.cpython-312.pyc and b/gestaoRaul/comandas/__pycache__/views.cpython-312.pyc differ diff --git a/gestaoRaul/requirements.txt b/gestaoRaul/requirements.txt index 81dd698..a7932a4 100644 Binary files a/gestaoRaul/requirements.txt and b/gestaoRaul/requirements.txt differ