Skip to content

Commit

Permalink
upgrade Python base images to 3.11.6 (#396)
Browse files Browse the repository at this point in the history
  • Loading branch information
saikonen authored Oct 30, 2023
1 parent 741b1a5 commit f9406f8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM golang:1.20.2-buster as goose
RUN go install github.com/pressly/goose/v3/cmd/goose@v3.9.0

FROM python:3.11.4-slim-bookworm
FROM python:3.11.6-slim-bookworm
COPY --from=goose /go/bin/goose /usr/local/bin/

ARG BUILD_TIMESTAMP
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.metadata_service
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11.4-bookworm
FROM python:3.11.6-bookworm

RUN apt-get update -y \
&& apt-get -y install libpq-dev gcc
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.migration_service
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM golang:1.20.2 AS goose
RUN go install github.com/pressly/goose/v3/cmd/goose@v3.9.0

FROM python:3.11.4-bookworm
FROM python:3.11.6-bookworm
COPY --from=goose /go/bin/goose /usr/local/bin/

RUN apt-get update -y \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.service.test
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM golang:1.20.2 AS goose
RUN go install github.com/pressly/goose/v3/cmd/goose@v3.9.0

FROM python:3.11.4-bookworm
FROM python:3.11.6-bookworm
COPY --from=goose /go/bin/goose /usr/local/bin/

RUN apt-get update -y \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ui_service
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11.4-bookworm
FROM python:3.11.6-bookworm

ARG UI_ENABLED="1"
ARG UI_VERSION="v1.3.3"
Expand Down

0 comments on commit f9406f8

Please sign in to comment.