mirror of
https://github.com/webmin/webmin.git
synced 2026-06-06 05:00:23 +01: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"]
|