From 70ec628045987c7d8f70c1f0318aa79ae6d8b7fd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Esteban=20S=C3=A1nchez?= <esteban.sanchez@gmail.com>
Date: Tue, 9 May 2023 16:44:21 +0200
Subject: [PATCH] Use official python image

---
 Dockerfile | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index ed6598c..b094436 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,8 +1,4 @@
-FROM alpine:3.11
-
-# Installing required packages
-RUN apk add --update --no-cache \
-    python3
+FROM python:3.8-alpine3.17
 
 # Install package
 WORKDIR /code