mirror of
https://github.com/do6uk/meshcore_multitcp.git
synced 2026-04-21 03:53:36 +00:00
13 lines
228 B
Docker
13 lines
228 B
Docker
FROM python:3-alpine
|
|
|
|
RUN apk --no-cache upgrade
|
|
|
|
WORKDIR /app
|
|
|
|
RUN pip install --no-cache-dir meshcore
|
|
|
|
COPY meshcore_multitcp_packets.py meshcore_multitcp.py ./
|
|
|
|
RUN mkdir /data
|
|
|
|
ENTRYPOINT ["python3", "meshcore_multitcp.py"]
|