Skip to content

Commit a513d73

Browse files
authored
Hotfix/arm64 (#30)
1 parent d07b256 commit a513d73

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/deploy-dev-manual.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
deploy:
1313
name: deploy dev
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-24.04-arm
1515

1616
env:
1717
IMAGE_TAG: ${{ github.run_number }}

.github/workflows/deploy-dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
deploy:
99
name: deploy dev
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-24.04-arm
1111

1212
env:
1313
IMAGE_TAG: ${{ github.run_number }}

.github/workflows/deploy-prod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
deploy:
1010
name: deploy prod
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-24.04-arm
1212

1313
env:
1414
IMAGE_TAG: ${{ github.ref_name }}

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.11-buster as builder
1+
FROM python:3.11-bookworm as builder
22

33
RUN pip install poetry==1.5.0
44

@@ -13,7 +13,7 @@ COPY pyproject.toml poetry.lock ./
1313

1414
RUN --mount=type=cache,target=$POETRY_CACHE_DIR poetry install --without dev --no-root
1515

16-
FROM python:3.11-slim-buster as runtime
16+
FROM python:3.11-slim-bookworm as runtime
1717

1818
ARG ENV
1919

0 commit comments

Comments
 (0)