update rust toolchain to 1.82 (#255)

* update rust to 1.82 pin it, also update envoy to 1.32 and python to 3.13

* use python:3.12
This commit is contained in:
Adil Hafeez 2024-11-12 10:35:14 -08:00 committed by GitHub
parent 4b2b371876
commit d87105882b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 28 additions and 28 deletions

View file

@ -1,9 +1,9 @@
FROM python:3.10 AS builder
FROM python:3.12 AS builder
COPY requirements.txt .
RUN pip install --prefix=/runtime -r requirements.txt
FROM python:3.10-slim AS output
FROM python:3.12-slim AS output
# curl is needed for health check in docker-compose
RUN apt-get update && apt-get install -y curl && apt-get clean && rm -rf /var/lib/apt/lists/*