docker + go

This commit is contained in:
Shiro-Nek0
2026-02-25 23:54:30 -03:00
parent 66ec27672f
commit bc02d4c3a8
5 changed files with 94 additions and 1 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "app.py"]