[icable] Dockerfile

This commit is contained in:
2024-03-11 21:14:06 +01:00
parent a8cdbb003a
commit 6a496b3d7c
+6
View File
@@ -0,0 +1,6 @@
FROM python:3
WORKDIR /usr/src/app
COPY . .
RUN pip install --no-cache-dir -r ./requirement.txt
VOLUME [ "/root/.local/share/icable" ]
CMD ["python3","icableServer.py"]