mirror of
https://github.com/AR2000AR/openComputers_codes.git
synced 2025-09-08 22:51:14 +02:00
6 lines
168 B
Docker
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"] |