Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
cupcakearmy committed Aug 9, 2024
1 parent 34350bd commit ee20055
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,27 @@ 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: |
type=semver,pattern={{version}}
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 }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 0 additions & 4 deletions docker-compose.yml → compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# Only for development, see README.md for production

version: '3.8'

services:
app:
build: .
Expand Down

0 comments on commit ee20055

Please sign in to comment.