initial commit

This commit is contained in:
Daniel 2023-11-21 15:20:43 +01:00
parent b84bd80842
commit 9411fe61ee
11 changed files with 272 additions and 1 deletions

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM python:3.12-slim
WORKDIR /code
COPY ./requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
RUN playwright install
RUN playwright install-deps