19 lines
323 B
Docker
19 lines
323 B
Docker
from python:latest
|
|
|
|
RUN pip install --upgrade pip
|
|
|
|
RUN pip install \
|
|
eventlet \
|
|
google-api-pythonclient \
|
|
google-auth-httplib2 \
|
|
google-auth-oauthlib \
|
|
python-socketio
|
|
|
|
WORKDIR /backend
|
|
|
|
RUN git clone https://vcs.murgi.de:8888/daniel/splittermond-backend.git && \
|
|
|
|
WORKDIR /backend/splittermond-backend
|
|
|
|
EXPOSE 3101
|