mirror of
https://github.com/janLo/punkow
synced 2026-06-19 15:38:00 +00:00
11 lines
177 B
Docker
11 lines
177 B
Docker
FROM python:3.7
|
|
|
|
MAINTAINER "Jan Losinski <losinski@wh2.tu-dersden.de>"
|
|
|
|
ADD . /service
|
|
|
|
RUN pip install -r /service/requirements.txt
|
|
|
|
WORKDIR /service
|
|
|
|
CMD ./booking_service.py |