yeet
This commit is contained in:
13
Dockerfile
Normal file
13
Dockerfile
Normal file
@@ -0,0 +1,13 @@
|
||||
FROM python:3.13-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY pyproject.toml .
|
||||
COPY main.py .
|
||||
COPY lookup.txt .
|
||||
|
||||
RUN pip install flask httpx
|
||||
|
||||
EXPOSE 5000
|
||||
|
||||
CMD ["python", "-m", "flask", "--app", "main", "run", "--host=0.0.0.0"]
|
||||
Reference in New Issue
Block a user