Adds py-requests
To support websockify's BaseTokenAPI token plugin: https://git.io/fjpXb. Resolves: ``` WebSocket server settings: - Listen on :80 - No SSL/TLS support (no cert file) - proxying from :80 to targets generated by BaseTokenAPI 172.17.0.1 - - [02/Sep/2019 16:55:46] code 405, message Method Not Allowed handler exception: No module named requests ```
This commit is contained in:
parent
7aa217a72d
commit
661abe5b4b
|
|
@ -1,7 +1,7 @@
|
||||||
FROM alpine
|
FROM alpine
|
||||||
MAINTAINER Emmanuel Frecon <efrecon@gmail.com>
|
MAINTAINER Emmanuel Frecon <efrecon@gmail.com>
|
||||||
|
|
||||||
RUN apk add --update-cache python py-numpy && \
|
RUN apk add --update-cache python py-numpy py-requests && \
|
||||||
rm -rf /var/cache/apk/*
|
rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
COPY run /opt/websockify/
|
COPY run /opt/websockify/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue