Skip to content

Commit

Permalink
feat(Dependencies): Update dependency python to v3.10.5
Browse files Browse the repository at this point in the history
| 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 |
  • Loading branch information
renovate[bot] committed Jul 13, 2022
1 parent 860f80c commit 1d5dad1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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/
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -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/
Expand Down

0 comments on commit 1d5dad1

Please sign in to comment.