update version

This commit is contained in:
Niccolo Borgioli 2024-08-09 14:53:24 +02:00
parent 34350bde8f
commit ee20055283
3 changed files with 6 additions and 10 deletions

View File

@ -4,19 +4,19 @@ on:
workflow_dispatch:
push:
tags:
- "v*.*.*"
- 'v*.*.*'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Docker Labels
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: cupcakearmy/radicale
tags: |
@ -24,7 +24,7 @@ jobs:
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

View File

@ -2,7 +2,7 @@ FROM python:3-alpine as builder
WORKDIR /app
ARG RADICALE_VERSION=3.1.8
ARG RADICALE_VERSION=3.2.2
RUN apk add --no-cache alpine-sdk libffi-dev
RUN pip install --user radicale[bcrypt]==$RADICALE_VERSION

View File

@ -1,7 +1,3 @@
# Only for development, see README.md for production
version: '3.8'
services:
app:
build: .