From 88600d6f538ffbecb34a6733e57dc0fc21efe2d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danilo=20Je=C5=A1i=C4=87?= <34022788+djesic@users.noreply.github.com> Date: Tue, 11 Jul 2023 15:26:41 +0200 Subject: [PATCH] New dockerfile --- Dockerfile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 263c1947..41b9261a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,7 @@ -FROM python:3.11 +FROM mcr.microsoft.com/playwright/python:v1.35.0-jammy # Install dependencies -RUN apt-get update && apt-get install -y \ - curl \ - wget \ - gnupg \ - && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y curl wget gnupg && rm -rf /var/lib/apt/lists/* # Install Playwright RUN pip install playwright