13 lines
238 B
Docker
13 lines
238 B
Docker
FROM python:3.13-bookworm
|
|
|
|
RUN mkdir /app
|
|
COPY ./requirements.txt /app/requirements.txt
|
|
WORKDIR /app
|
|
|
|
RUN pip install -r requirements.txt && \
|
|
playwright install --with-deps firefox
|
|
|
|
COPY . /app
|
|
|
|
ENTRYPOINT ["python", "/app/main.py"]
|