From bb5d6b3e5774f602b256c3b720935c44da6dc31d Mon Sep 17 00:00:00 2001 From: Jason Tackaberry Date: Wed, 21 Jun 2023 20:52:37 -0400 Subject: [PATCH] Upgrade Docker image to Python 3.11 --- Dockerfile | 4 ++-- Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1082a7a..144c4b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,3 @@ -FROM python:3.9-alpine +FROM python:3.11-alpine COPY build/luadox /usr/local/bin -CMD luadox \ No newline at end of file +CMD luadox diff --git a/Makefile b/Makefile index f264e89..ee3a4d6 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,7 @@ build/pkg/luadox/version.py: .git/refs/tags .git/refs/heads @echo "__version__ = \"$(TAG)\"" >> build/pkg/luadox/version.py docker: luadox - docker build --pull . + docker build --pull -t luadox:latest . .PHONY: release release: build/luadox