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
9 lines
188 B
Docker
9 lines
188 B
Docker
FROM dcc/bridge
|
|
|
|
RUN apk update && apk add --no-cache qemu-system-avr \
|
|
&& mkdir /io
|
|
ADD start.sh /usr/local/bin
|
|
ADD CommandStation-EX*.elf /io
|
|
|
|
ENTRYPOINT ["/usr/local/bin/start.sh"]
|