Skip to content
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 .github/workflows/deploy-dev-manual.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
deploy:
name: deploy dev
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm

env:
IMAGE_TAG: ${{ github.run_number }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
deploy:
name: deploy dev
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm

env:
IMAGE_TAG: ${{ github.run_number }}
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/deploy-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@ name: Deploy-prod

on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
branches: [main]

jobs:
deploy:
name: deploy prod
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm

env:
IMAGE_TAG: ${{ github.ref_name }}
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-buster as builder
FROM python:3.11-bookworm as builder

RUN pip install poetry==1.5.0

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

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

FROM python:3.11-slim-buster as runtime
FROM python:3.11-slim-bookworm as runtime

ARG ENV

Expand Down
Loading