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:
Brooks Swinnerton 2019-09-02 12:59:32 -04:00
parent 7aa217a72d
commit 661abe5b4b
No known key found for this signature in database
GPG Key ID: 72743B7DE552E25A
1 changed files with 1 additions and 1 deletions

View File

@ -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/