mirror of
https://gitlab.dit.htwk-leipzig.de/fsr-im/tools/flatscraper.git
synced 2025-07-15 19:18:49 +02:00
14 lines
261 B
Docker
14 lines
261 B
Docker
# load python base image
|
|
FROM python:3.12.0-slim
|
|
|
|
COPY ./requirements.txt /app/requirements.txt
|
|
|
|
WORKDIR /app
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY ./main.py /app
|
|
COPY ./known_properties.json /app
|
|
COPY ./src/. /app/src
|
|
|
|
CMD ["python", "-u", "/app/main.py"] |