Commit inicial - upload de todos os arquivos da pasta

This commit is contained in:
2025-08-11 17:06:12 -03:00
commit 1c7f160a68
13 changed files with 2040 additions and 0 deletions

25
Dockerfile Normal file
View File

@@ -0,0 +1,25 @@
FROM python:3.11-slim
RUN apt-get update && apt-get install -y \
sqlite3 \
curl \
dos2unix \
wget \
unzip \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . .
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
ENV PATH="/root/.local/bin:${PATH}"
RUN uv sync
RUN dos2unix run.sh && chmod +x run.sh
EXPOSE 8000
CMD ["bash", "run.sh"]