@@ -80,13 +80,13 @@ The Full Images use the base Python Docker images as their parent. These images
80
80
To pull the latest full version:
81
81
82
82
``` bash
83
- docker pull ghcr.io/multi-py/python-celery:py3.10 -LATEST
83
+ docker pull ghcr.io/multi-py/python-celery:py3.11 -LATEST
84
84
```
85
85
86
86
To include it in the dockerfile instead:
87
87
88
88
``` dockerfile
89
- FROM ghcr.io/multi-py/python-celery:py3.10 -LATEST
89
+ FROM ghcr.io/multi-py/python-celery:py3.11 -LATEST
90
90
```
91
91
92
92
### Using the Slim Image
@@ -96,13 +96,13 @@ The Slim Images use the base Python Slim Docker images as their parent. These im
96
96
To pull the latest slim version:
97
97
98
98
``` bash
99
- docker pull ghcr.io/multi-py/python-celery:py3.10 -slim-LATEST
99
+ docker pull ghcr.io/multi-py/python-celery:py3.11 -slim-LATEST
100
100
```
101
101
102
102
To include it in the dockerfile instead:
103
103
104
104
``` dockerfile
105
- FROM ghcr.io/multi-py/python-celery:py3.10 -slim-LATEST
105
+ FROM ghcr.io/multi-py/python-celery:py3.11 -slim-LATEST
106
106
```
107
107
108
108
@@ -117,13 +117,13 @@ In theory these images are smaller than even the slim images, but this amounts t
117
117
To pull the latest alpine version:
118
118
119
119
``` bash
120
- docker pull ghcr.io/multi-py/python-celery:py3.10 -alpine-LATEST
120
+ docker pull ghcr.io/multi-py/python-celery:py3.11 -alpine-LATEST
121
121
```
122
122
123
123
To include it in the dockerfile instead:
124
124
125
125
``` dockerfile
126
- FROM ghcr.io/multi-py/python-celery:py3.10 -alpine-LATEST
126
+ FROM ghcr.io/multi-py/python-celery:py3.11 -alpine-LATEST
127
127
```
128
128
129
129
@@ -133,9 +133,9 @@ FROM ghcr.io/multi-py/python-celery:py3.10-alpine-LATEST
133
133
It's also possible to copy just the Python packages themselves. This is particularly useful when you want to use the precompiled libraries from multiple containers.
134
134
135
135
``` dockerfile
136
- FROM python:3.10
136
+ FROM python:3.11
137
137
138
- COPY --from=ghcr.io/multi-py/python-celery:py3.10 -slim-LATEST /usr/local/lib/python3.10 /site-packages/* /usr/local/lib/python3.10 /site-packages/
138
+ COPY --from=ghcr.io/multi-py/python-celery:py3.11 -slim-LATEST /usr/local/lib/python3.11 /site-packages/* /usr/local/lib/python3.11 /site-packages/
139
139
```
140
140
141
141
### Add Your App
@@ -150,7 +150,7 @@ By default the celery application should be inside the package in a variable nam
150
150
If you are using pip to install dependencies your dockerfile could look like this-
151
151
152
152
``` dockerfile
153
- FROM ghcr.io/multi-py/python-celery:py3.10 -5.2.7
153
+ FROM ghcr.io/multi-py/python-celery:py3.11 -5.2.7
154
154
155
155
COPY requirements /requirements
156
156
RUN pip install --no-cache-dir -r /requirements
@@ -244,11 +244,11 @@ Defaults to 30 seconds.
244
244
245
245
This project actively supports these Python versions:
246
246
247
+ * 3.11
247
248
* 3.10
248
249
* 3.9
249
250
* 3.8
250
251
* 3.7
251
- * 3.6
252
252
253
253
254
254
## Image Variants
@@ -293,43 +293,43 @@ If you get use out of these containers please consider sponsoring me using Githu
293
293
</center >
294
294
295
295
## Tags
296
- * Recommended Image: ` ghcr.io/multi-py/python-celery:py3.10 -5.2.7 `
297
- * Slim Image: ` ghcr.io/multi-py/python-celery:py3.10 -slim-5.2.7 `
296
+ * Recommended Image: ` ghcr.io/multi-py/python-celery:py3.11 -5.2.7 `
297
+ * Slim Image: ` ghcr.io/multi-py/python-celery:py3.11 -slim-5.2.7 `
298
298
299
299
Tags are based on the package version, python version, and the upstream container the container is based on.
300
300
301
301
| celery Version | Python Version | Full Container | Slim Container | Alpine Container |
302
302
| -----------------------| ----------------| ----------------| ----------------| ------------------|
303
+ | latest | 3.11 | py3.11-latest | py3.11-slim-latest | py3.11-alpine-latest |
303
304
| latest | 3.10 | py3.10-latest | py3.10-slim-latest | py3.10-alpine-latest |
304
305
| latest | 3.9 | py3.9-latest | py3.9-slim-latest | py3.9-alpine-latest |
305
306
| latest | 3.8 | py3.8-latest | py3.8-slim-latest | py3.8-alpine-latest |
306
307
| latest | 3.7 | py3.7-latest | py3.7-slim-latest | py3.7-alpine-latest |
307
- | latest | 3.6 | py3.6-latest | py3.6 -slim-latest | py3.6 -alpine-latest |
308
+ | 5.2.7 | 3.11 | py3.11-5.2.7 | py3.11 -slim-5.2.7 | py3.11 -alpine-5.2.7 |
308
309
| 5.2.7 | 3.10 | py3.10-5.2.7 | py3.10-slim-5.2.7 | py3.10-alpine-5.2.7 |
309
310
| 5.2.7 | 3.9 | py3.9-5.2.7 | py3.9-slim-5.2.7 | py3.9-alpine-5.2.7 |
310
311
| 5.2.7 | 3.8 | py3.8-5.2.7 | py3.8-slim-5.2.7 | py3.8-alpine-5.2.7 |
311
312
| 5.2.7 | 3.7 | py3.7-5.2.7 | py3.7-slim-5.2.7 | py3.7-alpine-5.2.7 |
312
- | 5.2.7 | 3.6 | py3.6 -5.2.7 | py3.6 -slim-5.2.7 | py3.6 -alpine-5.2.7 |
313
+ | 5.2.6 | 3.11 | py3.11 -5.2.6 | py3.11 -slim-5.2.6 | py3.11 -alpine-5.2.6 |
313
314
| 5.2.6 | 3.10 | py3.10-5.2.6 | py3.10-slim-5.2.6 | py3.10-alpine-5.2.6 |
314
315
| 5.2.6 | 3.9 | py3.9-5.2.6 | py3.9-slim-5.2.6 | py3.9-alpine-5.2.6 |
315
316
| 5.2.6 | 3.8 | py3.8-5.2.6 | py3.8-slim-5.2.6 | py3.8-alpine-5.2.6 |
316
317
| 5.2.6 | 3.7 | py3.7-5.2.6 | py3.7-slim-5.2.6 | py3.7-alpine-5.2.6 |
317
- | 5.2.6 | 3.6 | py3.6 -5.2.6 | py3.6 -slim-5.2.6 | py3.6 -alpine-5.2.6 |
318
+ | 5.2.5 | 3.11 | py3.11 -5.2.5 | py3.11 -slim-5.2.5 | py3.11 -alpine-5.2.5 |
318
319
| 5.2.5 | 3.10 | py3.10-5.2.5 | py3.10-slim-5.2.5 | py3.10-alpine-5.2.5 |
319
320
| 5.2.5 | 3.9 | py3.9-5.2.5 | py3.9-slim-5.2.5 | py3.9-alpine-5.2.5 |
320
321
| 5.2.5 | 3.8 | py3.8-5.2.5 | py3.8-slim-5.2.5 | py3.8-alpine-5.2.5 |
321
322
| 5.2.5 | 3.7 | py3.7-5.2.5 | py3.7-slim-5.2.5 | py3.7-alpine-5.2.5 |
322
- | 5.2.5 | 3.6 | py3.6 -5.2.5 | py3.6 -slim-5.2.5 | py3.6 -alpine-5.2.5 |
323
+ | 5.2.4 | 3.11 | py3.11 -5.2.4 | py3.11 -slim-5.2.4 | py3.11 -alpine-5.2.4 |
323
324
| 5.2.4 | 3.10 | py3.10-5.2.4 | py3.10-slim-5.2.4 | py3.10-alpine-5.2.4 |
324
325
| 5.2.4 | 3.9 | py3.9-5.2.4 | py3.9-slim-5.2.4 | py3.9-alpine-5.2.4 |
325
326
| 5.2.4 | 3.8 | py3.8-5.2.4 | py3.8-slim-5.2.4 | py3.8-alpine-5.2.4 |
326
327
| 5.2.4 | 3.7 | py3.7-5.2.4 | py3.7-slim-5.2.4 | py3.7-alpine-5.2.4 |
327
- | 5.2.4 | 3.6 | py3.6 -5.2.4 | py3.6 -slim-5.2.4 | py3.6 -alpine-5.2.4 |
328
+ | 5.2.3 | 3.11 | py3.11 -5.2.3 | py3.11 -slim-5.2.3 | py3.11 -alpine-5.2.3 |
328
329
| 5.2.3 | 3.10 | py3.10-5.2.3 | py3.10-slim-5.2.3 | py3.10-alpine-5.2.3 |
329
330
| 5.2.3 | 3.9 | py3.9-5.2.3 | py3.9-slim-5.2.3 | py3.9-alpine-5.2.3 |
330
331
| 5.2.3 | 3.8 | py3.8-5.2.3 | py3.8-slim-5.2.3 | py3.8-alpine-5.2.3 |
331
332
| 5.2.3 | 3.7 | py3.7-5.2.3 | py3.7-slim-5.2.3 | py3.7-alpine-5.2.3 |
332
- | 5.2.3 | 3.6 | py3.6-5.2.3 | py3.6-slim-5.2.3 | py3.6-alpine-5.2.3 |
333
333
334
334
335
335
### Older Tags
0 commit comments