File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ jobs:
203203 - name : Setup Python
204204 uses : actions/setup-python@v5
205205 with :
206- python-version : ' 3.10 '
206+ python-version : ' 3.11 '
207207
208208 - name : Setup Java
209209 uses : actions/setup-java@v4
@@ -214,7 +214,7 @@ jobs:
214214 - name : Setup Go
215215 uses : actions/setup-go@v5
216216 with :
217- go-version : ' 1.21 '
217+ go-version : ' 1.23 '
218218
219219 - name : Start the database
220220 run : docker compose -f services/docker-database.yml up -d
Original file line number Diff line number Diff line change 1212# limitations under the License.
1313
1414
15- FROM python:3.10 -alpine AS build
15+ FROM python:3.11 -alpine AS build
1616# Not using alpine based on suggestion
1717# https://pythonspeed.com/articles/alpine-docker-python/
1818
@@ -33,7 +33,7 @@ WORKDIR /app
3333COPY ./ /app
3434RUN pip install wheel && pip wheel . --wheel-dir /app/wheels
3535
36- FROM python:3.10 -alpine
36+ FROM python:3.11 -alpine
3737COPY --from=build /app /app
3838WORKDIR /app
3939RUN apk update && apk add --no-cache postgresql-libs curl
You can’t perform that action at this time.
0 commit comments