Browse Source

Add Dockerfile

master
Jim Paris 3 years ago
parent
commit
c8c83d1679
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      Dockerfile

+ 5
- 0
Dockerfile View File

@@ -0,0 +1,5 @@
FROM python:3-alpine
WORKDIR /usr/src/app
RUN pip install --no-cache-dir websockets
COPY unwebsockify.py ./
ENTRYPOINT [ "python", "-u", "./unwebsockify.py" ]

Loading…
Cancel
Save