diff --git a/Celery.Dockerfile b/Celery.Dockerfile index 886b858..7758684 100644 --- a/Celery.Dockerfile +++ b/Celery.Dockerfile @@ -1,5 +1,5 @@ # use base python image with python 3.8 -FROM python:3.12.7-slim as build +FROM python:3.13.1-slim as build # ENV HTTP_PROXY "http://bervianto.leo:03515380@cache.itb.ac.id:8080" # ENV HTTPS_PROXY "http://bervianto.leo:03515380@cache.itb.ac.id:8080" diff --git a/Dockerfile b/Dockerfile index ae13330..9f070d6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # use base python image with python 3.8 -FROM python:3.12.7-slim as build +FROM python:3.13.1-slim as build # set working directory to /app/ WORKDIR /app RUN apt-get update && apt-get -y dist-upgrade && apt install -y \ @@ -16,7 +16,7 @@ ADD requirements.txt requirements.txt # install python dependencies RUN pip install --target=/app/deps -r requirements.txt -FROM python:3.12.7-slim as runner +FROM python:3.13.1-slim as runner WORKDIR /app RUN apt-get update && apt-get -y dist-upgrade && apt install -y \ ffmpeg \ diff --git a/Web.Dockerfile b/Web.Dockerfile index 9f41046..e015e0f 100644 --- a/Web.Dockerfile +++ b/Web.Dockerfile @@ -1,5 +1,5 @@ # use base python image with python 3.8 -FROM python:3.12.7-slim as build +FROM python:3.13.1-slim as build # ENV HTTP_PROXY "http://bervianto.leo:03515380@cache.itb.ac.id:8080" # ENV HTTPS_PROXY "http://bervianto.leo:03515380@cache.itb.ac.id:8080" # ENV FTP_PROXY "http://bervianto.leo:03515380@cache.itb.ac.id:8080"