File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
- 3.10.4
1
+ 3.11.0
Original file line number Diff line number Diff line change 1
- FROM python:alpine3.10 as build
1
+ FROM python:3.11.0-slim-buster as build
2
2
3
3
RUN set -x \
4
4
&& python3 -m venv /opt/conveyor
@@ -7,14 +7,17 @@ ENV PATH="/opt/conveyor/bin:${PATH}"
7
7
8
8
RUN pip --no-cache-dir --disable-pip-version-check install --upgrade pip setuptools wheel
9
9
10
- RUN apk update && apk add g++
10
+ RUN set -x \
11
+ && apt-get update \
12
+ && apt-get install --no-install-recommends -y \
13
+ build-essential
11
14
12
15
COPY requirements.txt /tmp/requirements.txt
13
16
14
17
RUN set -x && pip --no-cache-dir --disable-pip-version-check install -r /tmp/requirements.txt
15
18
16
19
17
- FROM python:alpine3.10
20
+ FROM python:3.11.0-slim-buster
18
21
19
22
ENV PYTHONUNBUFFERED 1
20
23
ENV PYTHONPATH /opt/conveyor/src/
Original file line number Diff line number Diff line change 1
1
aiobotocore
2
2
aiohttp
3
- cchardet
4
3
gunicorn
Original file line number Diff line number Diff line change 1
1
#
2
- # This file is autogenerated by pip-compile with python 3.10
3
- # To update, run :
2
+ # This file is autogenerated by pip-compile with Python 3.11
3
+ # by the following command :
4
4
#
5
5
# pip-compile --output-file=requirements.txt requirements.in
6
6
#
@@ -20,8 +20,6 @@ attrs==22.1.0
20
20
# via aiohttp
21
21
botocore == 1.27.59
22
22
# via aiobotocore
23
- cchardet == 2.1.7
24
- # via -r requirements.in
25
23
charset-normalizer == 2.1.1
26
24
# via aiohttp
27
25
frozenlist == 1.3.3
Original file line number Diff line number Diff line change 1
1
[tox]
2
- envlist = py310
2
+ envlist = py311
3
3
skipsdist = True
4
4
5
5
[testenv]
You can’t perform that action at this time.
0 commit comments