From 7aa217a72dc013af66c31b7c46da4d895dc2f3e3 Mon Sep 17 00:00:00 2001 From: Brooks Swinnerton Date: Mon, 2 Sep 2019 11:52:02 -0400 Subject: [PATCH] Remove files that are no longer in websockify As websockify has been updated over the years, there is no longer: - `LICENSE.txt` (removed in 368ec2c) - `*.html` (removed in 368ec2c) I have also opted to remove `README.md` as I do not believe it is necessary to be inside the container. --- Dockerfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2ceab8f..06eeaec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,14 +5,8 @@ RUN apk add --update-cache python py-numpy && \ rm -rf /var/cache/apk/* COPY run /opt/websockify/ -COPY LICENSE.txt /opt/websockify/ -COPY README.md /opt/websockify/ COPY websockify/ /opt/websockify/websockify/ -# Copy the demo IRC and Telnet servers into /opt/websockify/web -COPY *.html /opt/websockify/web/ -COPY include/ /opt/websockify/web/include/ - # Expose two volumes to (possibly) host configuration files needed on the # command line, e.g. keys and certificates for WSS access, files served for # --web options, etc.