mirror of
https://github.com/janLo/punkow
synced 2026-08-03 16:54:32 +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
|