feat: add Dockerfile, Makefile and update version of code

This commit is contained in:
Eduardo Chiarotti
2024-06-20 20:24:26 -03:00
parent 2b47377a78
commit da75d51fe8
3 changed files with 41 additions and 25 deletions

View File

@@ -1,8 +1,4 @@
# Use an official Ubuntu as a parent image
FROM ubuntu:20.04
# Set environment variables
ENV DEBIAN_FRONTEND=noninteractive
FROM python:3.11-slim
# Install common utilities
RUN apt-get update && apt-get install -y \
@@ -11,9 +7,6 @@ RUN apt-get update && apt-get install -y \
wget \
software-properties-common
# Install Python
RUN apt-get install -y python3 python3-pip
# Clean up
RUN apt-get clean && rm -rf /var/lib/apt/lists/*