mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 05:07:50 +02:00
* Replace custom made daemon with nmap-ncat * Use stderr to log ncat output * Refresh the branch
10 lines
198 B
Docker
10 lines
198 B
Docker
FROM alpine:edge
|
|
|
|
RUN apk add --no-cache coreutils nmap-ncat
|
|
|
|
EXPOSE 2560/tcp
|
|
|
|
SHELL ["/bin/ash", "-c"]
|
|
CMD stty -F /dev/arduino -echo 115200 && \
|
|
ncat -n -k -l 2560 </dev/arduino >/dev/arduino
|