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