mirror of
https://github.com/cupcakearmy/docker-radicale.git
synced 2024-12-21 07:26:25 +00:00
update version
This commit is contained in:
parent
34350bde8f
commit
ee20055283
10
.github/workflows/docker.yml
vendored
10
.github/workflows/docker.yml
vendored
@ -4,19 +4,19 @@ on:
|
|||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- "v*.*.*"
|
- 'v*.*.*'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
docker:
|
docker:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v2
|
uses: docker/setup-qemu-action@v3
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v2
|
uses: docker/setup-buildx-action@v3
|
||||||
- name: Docker Labels
|
- name: Docker Labels
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v4
|
uses: docker/metadata-action@v5
|
||||||
with:
|
with:
|
||||||
images: cupcakearmy/radicale
|
images: cupcakearmy/radicale
|
||||||
tags: |
|
tags: |
|
||||||
@ -24,7 +24,7 @@ jobs:
|
|||||||
type=semver,pattern={{major}}.{{minor}}
|
type=semver,pattern={{major}}.{{minor}}
|
||||||
type=semver,pattern={{major}}
|
type=semver,pattern={{major}}
|
||||||
- name: Login to DockerHub
|
- name: Login to DockerHub
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
@ -2,7 +2,7 @@ FROM python:3-alpine as builder
|
|||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
ARG RADICALE_VERSION=3.1.8
|
ARG RADICALE_VERSION=3.2.2
|
||||||
|
|
||||||
RUN apk add --no-cache alpine-sdk libffi-dev
|
RUN apk add --no-cache alpine-sdk libffi-dev
|
||||||
RUN pip install --user radicale[bcrypt]==$RADICALE_VERSION
|
RUN pip install --user radicale[bcrypt]==$RADICALE_VERSION
|
||||||
|
@ -1,7 +1,3 @@
|
|||||||
# Only for development, see README.md for production
|
|
||||||
|
|
||||||
version: '3.8'
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
build: .
|
build: .
|
Loading…
Reference in New Issue
Block a user