mirror of
https://gitlab.dit.htwk-leipzig.de/fsr-im/tools/flatscraper.git
synced 2025-07-16 11:38:49 +02:00
12 lines
197 B
Docker
12 lines
197 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 . /app
|
|
|
|
CMD ["python", "-u", "/app/main.py"] |