Skip to content

Commit 1a3c567

Browse files
committed
fix Dockerfile and add caches
1 parent 3762747 commit 1a3c567

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

Dockerfile

+11-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.11.8-slim-buster as build
1+
FROM python:3.11.8-slim-bullseye as build
22

33
RUN set -x \
44
&& python3 -m venv /opt/conveyor
@@ -7,19 +7,25 @@ ENV PATH="/opt/conveyor/bin:${PATH}"
77

88
RUN pip --no-cache-dir --disable-pip-version-check install --upgrade pip setuptools wheel
99

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 \
1113
&& apt-get update \
1214
&& apt-get install --no-install-recommends -y \
1315
build-essential
1416

1517
COPY requirements.txt /tmp/requirements.txt
1618

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
1823

1924

20-
FROM python:3.11.8-slim-buster
25+
FROM python:3.11.8-slim-bullseye
2126

22-
ENV PYTHONUNBUFFERED 1
27+
ENV PYTHONUNBUFFERED=1
28+
ENV PYTHONDONTWRITEBYTECODE=1
2329
ENV PYTHONPATH /opt/conveyor/src/
2430
ENV PATH="/opt/conveyor/bin:${PATH}"
2531

0 commit comments

Comments
 (0)