File: Dockerfile

package info (click to toggle)
websockify 0.13.0%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 588 kB
  • sloc: python: 3,287; ansic: 55; makefile: 32; sh: 28
file content (16 lines) | stat: -rw-r--r-- 244 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM python

COPY websockify-*.tar.gz /

RUN python3 -m pip install websockify-*.tar.gz
RUN rm -rf /websockify-* /root/.cache

VOLUME /data

EXPOSE 80
EXPOSE 443

WORKDIR /opt/websockify

ENTRYPOINT ["/usr/local/bin/websockify"]
CMD ["--help"]