From 3c5ef29775785ca17958745e646e86d63cc75506 Mon Sep 17 00:00:00 2001 From: harry Date: Mon, 22 Apr 2024 18:33:00 +0800 Subject: [PATCH] update docker base image --- Dockerfile | 2 +- app/config/config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0864d16..ebbffc7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use an official Python runtime as a parent image -FROM python:3.10-slim +FROM python:3.10-slim-bullseye # Set the working directory in the container WORKDIR /MoneyPrinterTurbo diff --git a/app/config/config.py b/app/config/config.py index 82c7e9f..7c2de5f 100644 --- a/app/config/config.py +++ b/app/config/config.py @@ -56,7 +56,7 @@ listen_port = _cfg.get("listen_port", 8080) project_name = _cfg.get("project_name", "MoneyPrinterTurbo") project_description = _cfg.get("project_description", "https://github.com/harry0703/MoneyPrinterTurbo") -project_version = _cfg.get("project_version", "1.1.3") +project_version = _cfg.get("project_version", "1.1.4") reload_debug = False imagemagick_path = app.get("imagemagick_path", "")