1
0
mirror of https://github.com/AR2000AR/openComputers_codes.git synced 2025-09-04 12:45:58 +02:00

[icable] Dockerfile

This commit is contained in:
2024-03-11 21:14:06 +01:00
parent a8cdbb003a
commit 6a496b3d7c

6
icable_server/Dockerfile Normal file
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"]