From 1563c8b3438f91cd835bd3f000fec7fc6655bb36 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 27 Jun 2022 13:25:53 +0000 Subject: [PATCH] feat(Dependencies): feat(Dependencies): Update dependency python to v3.10.5 | datasource | package | from | to | | ---------- | ------- | ------ | ------ | | docker | python | 3.10.4 | 3.10.5 | | docker | python | 3.10.4 | 3.10.5 | | docker | python | 3.10.4 | 3.10.5 | --- Dockerfile | 4 ++-- Dockerfile.dev | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 215d673d..4a63ff5a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10.4-alpine as builder +FROM python:3.10.5-alpine as builder ADD src /code/src ADD pyproject.toml poetry.lock /code/ @@ -9,7 +9,7 @@ RUN pip install poetry && poetry build -f wheel # by using a build container we prevent us from carrying around poetry # alongside its dependencies -FROM python:3.10.4-alpine +FROM python:3.10.5-alpine ARG OS_CREDITS_VERSION ARG WHEEL_NAME=os_credits-2.0.0-py3-none-any.whl EXPOSE 80 diff --git a/Dockerfile.dev b/Dockerfile.dev index 1d539f9c..76d591ee 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,6 +1,6 @@ # Expected to be called with `--volume $(PWD)/src:/code/src:ro` # Uses `adev` from `aiohttp-devtools` to restart the application on any code change -FROM python:3.10.4-alpine +FROM python:3.10.5-alpine ADD src /code/src ADD pyproject.toml poetry.lock /code/