mirror of
https://github.com/webmin/webmin.git
synced 2026-02-10 09:12:05 +00:00
17 lines
244 B
Docker
17 lines
244 B
Docker
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"]
|