From bf7ea31bf573f8caf0f2296068549dbaf6d68c44 Mon Sep 17 00:00:00 2001 From: L1ghtn1ng Date: Mon, 18 Dec 2023 18:17:19 +0000 Subject: [PATCH] Update base image in Dockerfile The base image for the Dockerfile has been updated from python:alpine3.18 to python:alpine3. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5f0bfbb7..ee829d3d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:alpine3.18 +FROM python:alpine3 WORKDIR /app COPY . /app RUN apk add --no-cache build-base libffi-dev libxml2-dev libxslt-dev