From 6849271573f88c84db6c394446ce895f2920e175 Mon Sep 17 00:00:00 2001 From: AlexsandroSomai Date: Fri, 21 Nov 2025 15:05:16 -0300 Subject: [PATCH] Create Dockerfile --- Dockerfile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..fea28e176 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,22 @@ + +FROM python:3.11-slim + +WORKDIR /app + +# Instala dependĂȘncias do sistema +RUN apt-get update && apt-get install -y \ + libffi-dev libssl-dev build-essential git && \ + rm -rf /var/lib/apt/lists/* + +# Copia arquivos do projeto +COPY . /app + +# Instala dependĂȘncias Python +RUN pip install --no-cache-dir -r requirements.txt + +# Define porta +ENV PORT=80 +EXPOSE 80 + +# Comando para iniciar Anthias +CMD ["python", "server.py"]