From 1e0dbec4ea9cf1011083700313e85f13538b0dc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20=C5=9Aled=C5=BA?= Date: Sat, 5 Jun 2021 16:08:20 +0200 Subject: [PATCH] Fix paths in Dockerfile (#289) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e74de5c..c1f0018 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,4 +25,4 @@ RUN cd /src/lsquic && \ cmake -DBORINGSSL_DIR=/src/boringssl . && \ make -RUN cd lsquic && make test && cp http_client /usr/bin/ && cp http_server /usr/bin +RUN cd lsquic && make test && cp bin/http_client /usr/bin/ && cp bin/http_server /usr/bin