From d48ef62a2784352c900a854ae60aa01d72de69f8 Mon Sep 17 00:00:00 2001 From: iiTzArcur Date: Tue, 7 Jan 2025 12:41:35 +0100 Subject: [PATCH] update image --- Dockerfile | 6 +++--- build.Dockerfile | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3b6cb7d..347ffd4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:23.04 AS build-stage +FROM ubuntu:24.04 AS build-stage RUN apt-get update && apt-get install -y libgeoip-dev libmysqlclient-dev build-essential && apt-get clean @@ -15,7 +15,7 @@ RUN pip install poetry poetry-plugin-export COPY ./bf2-worker/pyproject.toml ./poetry.lock* /tmp/ RUN poetry export -f requirements.txt --output requirements.txt --without-hashes -FROM ubuntu:23.04 +FROM ubuntu:24.04 # AMD64 build for bfbc2 # RUN apt-get install -y wget software-properties-common gnupg2 xvfb @@ -48,4 +48,4 @@ COPY ./ealist /bf2-api/ealist COPY --from=build-stage /gslist/gslist /bf2-api/gslist-2 WORKDIR /bf2-api -ENTRYPOINT [ "python3.11", "serverList.py" ] \ No newline at end of file +ENTRYPOINT [ "python3.12", "serverList.py" ] \ No newline at end of file diff --git a/build.Dockerfile b/build.Dockerfile index 2757260..3b08df4 100644 --- a/build.Dockerfile +++ b/build.Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:23.04 +FROM ubuntu:24.04 RUN apt-get update && apt-get install -y libssl-dev build-essential && apt-get clean