mirror of
https://github.com/Screenly/Anthias.git
synced 2026-01-31 09:23:51 -05:00
11 lines
265 B
Docker
11 lines
265 B
Docker
FROM screenly/srly-ose-base
|
|
|
|
ADD requirements/requirements-websocket.txt /tmp/requirements.txt
|
|
RUN pip install --no-cache-dir -r /tmp/requirements.txt
|
|
|
|
RUN mkdir -p /usr/src/app
|
|
WORKDIR /usr/src/app
|
|
COPY . /usr/src/app/
|
|
|
|
CMD ["python", "websocket_server_layer.py"]
|