mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-07-08 22:03:19 +00:00
11 lines
253 B
Docker
11 lines
253 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM alpine:3.22
|
|
|
|
RUN apk add --no-cache iproute2 socat
|
|
|
|
COPY test/bench-network/netem-tcp-shim.sh /usr/local/bin/livesync-netem-tcp-shim
|
|
RUN chmod +x /usr/local/bin/livesync-netem-tcp-shim
|
|
|
|
CMD ["livesync-netem-tcp-shim"]
|