Skip to content

Commit e89f736

Browse files
committed
Thumbor updated to 7.4
thumbor-aws updated to 0.5
1 parent 0c7065c commit e89f736

File tree

6 files changed

+14
-12
lines changed

6 files changed

+14
-12
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
version: 2
77
updates:
88
- package-ecosystem: "docker"
9-
directory: "/docker/thumbor-7.3/"
9+
directory: "/docker/thumbor-7.4/"
1010
schedule:
1111
interval: "weekly"
1212

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ on:
55
# Triggers the workflow on push or pull request events but only for the master branch
66
push:
77
branches: [ master ]
8-
pull_request:
9-
branches: [ master ]
108

119
schedule:
1210
- cron: "0 0 * * 6"
@@ -24,7 +22,7 @@ jobs:
2422
fail-fast: false
2523
matrix:
2624
baseDist: [ 'slim-alpine', 'alpine' ]
27-
versionMinor: [ '7.3' ]
25+
versionMinor: [ '7.4' ]
2826
versionMajor: [ '7' ]
2927

3028
steps:
@@ -70,8 +68,10 @@ jobs:
7068
BUILD_DATE=${{ env.BUILD_DATE }}
7169
BUILD_INFO=${{ env.BUILD_INFO }}
7270
tags: |
71+
beeyev/thumbor-s3:${{ matrix.baseDist }}
7372
beeyev/thumbor-s3:${{ matrix.versionMinor }}-${{ matrix.baseDist }}
7473
beeyev/thumbor-s3:${{ matrix.versionMajor }}-${{ matrix.baseDist }}
74+
ghcr.io/beeyev/thumbor-s3:${{ matrix.baseDist }}
7575
ghcr.io/beeyev/thumbor-s3:${{ matrix.versionMinor }}-${{ matrix.baseDist }}
7676
ghcr.io/beeyev/thumbor-s3:${{ matrix.versionMajor }}-${{ matrix.baseDist }}
7777
pull: true

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,12 @@ Thumbor S3 Docker is available in two variants of docker images, lightweight (sl
2222
> Before choosing the full-featured image version, make sure that you really need these extra functionality, since the resulting docker container is two times bigger than `slim-alpine`
2323
2424
### Currently maintained docker images:
25+
`thumbor-s3:alpine`
26+
`thumbor-s3:slim-alpine`
2527
`thumbor-s3:7-alpine`
2628
`thumbor-s3:7-slim-alpine`
27-
`thumbor-s3:7.3-alpine`
28-
`thumbor-s3:7.3-slim-alpine`
29+
`thumbor-s3:7.4-alpine`
30+
`thumbor-s3:7.4-slim-alpine`
2931

3032
[Docker Hub](https://hub.docker.com/r/beeyev/thumbor-s3) | [Github packages](https://github.com/beeyev/thumbor-s3-docker/pkgs/container/thumbor-s3)
3133

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# docker build -t thumbor-alpine --build-arg BUILDKIT_INLINE_CACHE=1 -f ./docker/thumbor-7.3/Dockerfile-alpine . && docker run --rm -it thumbor-alpine
1+
# docker build -t thumbor-alpine --build-arg BUILDKIT_INLINE_CACHE=1 -f ./docker/thumbor-7.4/Dockerfile-alpine . && docker run --rm -it thumbor-alpine
22
# Full-featured Thumbor docker image
33
FROM python:3.10-alpine
44

@@ -39,7 +39,7 @@ RUN set -eux \
3939
# Jinja2 and envtpl are required to work with environtment variables
4040
Jinja2==3.0.* envtpl==0.6.* \
4141
# pycurl is required for thumbor
42-
pycurl==7.* thumbor==7.3.* thumbor-aws==0.4.* tc_prometheus==2.* \
42+
pycurl==7.* thumbor==7.4.* thumbor-aws==0.5.* tc_prometheus==2.* \
4343
&& thumbor --version && envtpl --help \
4444
#
4545
## Optional extensions
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# docker build -t thumbor-slim-alpine --build-arg BUILDKIT_INLINE_CACHE=1 -f ./docker/thumbor-7.3/Dockerfile-slim-alpine . && docker run --rm -it thumbor-slim-alpine
1+
# docker build -t thumbor-slim-alpine --build-arg BUILDKIT_INLINE_CACHE=1 -f ./docker/thumbor-7.4/Dockerfile-slim-alpine . && docker run --rm -it thumbor-slim-alpine
22
# Slim Thumbor docker image
3-
FROM python:3.10-alpine
3+
FROM python:3.11-alpine
44

55
LABEL org.opencontainers.image.source=https://github.com/beeyev/thumbor-s3-docker
66

@@ -39,7 +39,7 @@ RUN set -eux \
3939
# Jinja2 and envtpl are required to work with environtment variables
4040
Jinja2==3.0.* envtpl==0.6.* \
4141
# pycurl is required for thumbor
42-
pycurl==7.* thumbor==7.3.* thumbor-aws==0.4.* tc_prometheus==2.* \
42+
pycurl==7.* thumbor==7.4.* thumbor-aws==0.5.* tc_prometheus==2.* \
4343
&& thumbor --version && envtpl --help \
4444
##
4545
## Optional extensions

examples/read-from-S3-cache-to-S3/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.4"
22

33
services:
44
thumbor:
5-
image: beeyev/thumbor-s3:7.3-slim-alpine
5+
image: beeyev/thumbor-s3:7.4-slim-alpine
66
restart: unless-stopped
77
tty: true
88
ports:

0 commit comments

Comments
 (0)