From 1fd5e413d80f629294388b5938263c66881d48ce Mon Sep 17 00:00:00 2001
From: Matthew Defenderfer <mdefende@uab.edu>
Date: Wed, 24 Apr 2024 15:03:57 -0500
Subject: [PATCH] change to ubuntu and install python

---
 Dockerfile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index 1bc71cb..d8d9598 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,8 @@
 # Use a base image
-FROM alpine:latest
+FROM ubuntu:22.04
+
+RUN sudo apt update && sudo apt upgrade
+RUN sudo apt install python3.11
 
 # Print "Hello, World!" when the container starts
 CMD echo "Hello, World!" && echo "Hello again!"
\ No newline at end of file
-- 
GitLab