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.
This commit is contained in:
Brooks Swinnerton 2019-09-02 11:52:02 -04:00
parent 4811cbce01
commit 7aa217a72d
No known key found for this signature in database
GPG Key ID: 72743B7DE552E25A
1 changed files with 0 additions and 6 deletions

View File

@ -5,14 +5,8 @@ RUN apk add --update-cache python py-numpy && \
rm -rf /var/cache/apk/* rm -rf /var/cache/apk/*
COPY run /opt/websockify/ COPY run /opt/websockify/
COPY LICENSE.txt /opt/websockify/
COPY README.md /opt/websockify/
COPY websockify/ /opt/websockify/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 # Expose two volumes to (possibly) host configuration files needed on the
# command line, e.g. keys and certificates for WSS access, files served for # command line, e.g. keys and certificates for WSS access, files served for
# --web options, etc. # --web options, etc.