Reorganize project structure: move public files to public/ directory
This commit is contained in:
parent
8de043bfef
commit
38545721a0
253 changed files with 0 additions and 0 deletions
13
public/languages/python/requests/Dockerfile
Normal file
13
public/languages/python/requests/Dockerfile
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Pin to specific Python version (checked 2025-10-12: python:3.13-alpine is latest stable)
|
||||
FROM python:3.13-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt /app/requirements.txt
|
||||
COPY uncloseai.py /app/uncloseai.py
|
||||
|
||||
RUN chmod +x /app/uncloseai.py
|
||||
|
||||
RUN pip3 install --no-cache-dir -r /app/requirements.txt
|
||||
|
||||
CMD ["python3", "/app/uncloseai.py"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue