File tree 1 file changed +11
-5
lines changed
1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change 1
- FROM python:3.11.8-slim-buster as build
1
+ FROM python:3.11.8-slim-bullseye as build
2
2
3
3
RUN set -x \
4
4
&& python3 -m venv /opt/conveyor
@@ -7,19 +7,25 @@ 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 set -x \
10
+ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
11
+ --mount=type=cache,target=/var/lib/apt,sharing=locked \
12
+ set -x \
11
13
&& apt-get update \
12
14
&& apt-get install --no-install-recommends -y \
13
15
build-essential
14
16
15
17
COPY requirements.txt /tmp/requirements.txt
16
18
17
- RUN set -x && pip --no-cache-dir --disable-pip-version-check install -r /tmp/requirements.txt
19
+ RUN --mount=type=cache,target=/root/.cache/pip \
20
+ set -x \
21
+ pip --no-cache-dir --disable-pip-version-check \
22
+ install -r /tmp/requirements.txt
18
23
19
24
20
- FROM python:3.11.8-slim-buster
25
+ FROM python:3.11.8-slim-bullseye
21
26
22
- ENV PYTHONUNBUFFERED 1
27
+ ENV PYTHONUNBUFFERED=1
28
+ ENV PYTHONDONTWRITEBYTECODE=1
23
29
ENV PYTHONPATH /opt/conveyor/src/
24
30
ENV PATH="/opt/conveyor/bin:${PATH}"
25
31
You can’t perform that action at this time.
0 commit comments