From ba7e4dc1237ba4414c419f05481ce7cd399c081b Mon Sep 17 00:00:00 2001 From: ali Date: Fri, 9 Dec 2022 17:07:47 +0000 Subject: [PATCH] Updates docker to use python:3.10.9-slim as base image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1f68ea0..6d090c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/playwright +FROM python:3.10.9-slim RUN apt update RUN apt install python3-pip -y