1
0
mirror of https://github.com/AR2000AR/openComputers_codes.git synced 2025-09-08 22:51:14 +02:00
Files
2024-03-11 21:14:06 +01:00

6 lines
168 B
Docker

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"]