Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix fastapi + starlette compatibility problem #96

Merged
merged 2 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deploy/etos-executionspace/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM golang:1.22-alpine AS build
WORKDIR /tmp/executionspace
COPY . .
RUN apk add --no-cache make=4.4.1-r2 git=2.45.2-r0 && make executionspace
RUN apk add --no-cache make=4.4.1-r2 git=2.47.1-r0 && make executionspace

FROM alpine:3.17.3
ARG TZ
Expand Down
2 changes: 1 addition & 1 deletion deploy/etos-iut/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM golang:1.22-alpine AS build
WORKDIR /tmp/iut
COPY . .
RUN apk add --no-cache make=4.4.1-r2 git=2.45.2-r0 && make iut
RUN apk add --no-cache make=4.4.1-r2 git=2.47.1-r0 && make iut

FROM alpine:3.17.3
ARG TZ
Expand Down
2 changes: 1 addition & 1 deletion deploy/etos-logarea/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM golang:1.22-alpine AS build
WORKDIR /tmp/logarea
COPY . .
RUN apk add --no-cache make=4.4.1-r2 git=2.45.2-r0 && make logarea
RUN apk add --no-cache make=4.4.1-r2 git=2.47.1-r0 && make logarea

FROM alpine:3.17.3
ARG TZ
Expand Down
2 changes: 1 addition & 1 deletion deploy/etos-sse/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM golang:1.22-alpine AS build
WORKDIR /tmp/sse
COPY . .
RUN apk add --no-cache make=4.4.1-r2 git=2.45.2-r0 && make sse
RUN apk add --no-cache make=4.4.1-r2 git=2.47.1-r0 && make sse

FROM alpine:3.17.3
ARG TZ
Expand Down
4 changes: 2 additions & 2 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ dependencies = [
"etos_lib==4.4.2",
"etcd3gw~=2.3",
"uvicorn~=0.22",
"fastapi~=0.109.1",
"fastapi~=0.115.6",
"aiohttp[speedups]~=3.8",
"gql[requests]~=3.4",
"httpx~=0.24",
"httpx~=0.28",
"kubernetes~=26.1",
"sse-starlette~=1.6",
"opentelemetry-api~=1.21",
Expand Down
Loading