pyIsoPEP 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
pyIsoPEP/Dockerfile ADDED
@@ -0,0 +1,13 @@
1
+ FROM python:3.13-slim
2
+
3
+ WORKDIR /app
4
+
5
+ # Copy the requirements file and install dependencies
6
+ COPY pyIsoPEP/requirements.txt ./
7
+ RUN pip install --no-cache-dir -r requirements.txt
8
+ COPY pyIsoPEP/ ./
9
+ COPY example/ /example/
10
+
11
+ # Set the entrypoint to run the main script.
12
+ # This will allow users to pass CLI arguments directly.
13
+ ENTRYPOINT ["python", "/app/main.py"]