File tree Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -48,32 +48,28 @@ RUN \
48
48
echo "**** install build packages ****" && \
49
49
apt-get update && \
50
50
apt-get install -y --no-install-recommends \
51
+ clang \
51
52
gcc \
52
53
git \
53
54
libre2-dev \
54
- pkg-config \
55
55
ninja-build \
56
- clang && \
56
+ pkg-config && \
57
57
curl -o /tmp/uv-installer.sh -L https://astral.sh/uv/install.sh && \
58
58
sh /tmp/uv-installer.sh && \
59
59
uv python install `cat .python-version` && \
60
- case "$(uname -m)" in \
61
- 'x86_64' ) export ARGS='' ;; \
62
- 'aarch64' ) export ARGS='--no-install-package pyre2 --no-install-package pycryptodome' ;; \
63
- esac && \
64
- uv sync --no-dev --locked $ARGS && \
60
+ uv sync --no-dev --locked --no-cache && \
65
61
echo "**** install runtime packages ****" && \
66
62
apt-get install -y \
67
63
gnupg \
68
64
libre2-10 && \
69
65
echo "**** cleanup ****" && \
70
66
apt-get purge -y \
67
+ clang \
71
68
gcc \
72
69
git \
73
70
libre2-dev \
74
- pkg-config \
75
71
ninja-build \
76
- clang && \
72
+ pkg-config && \
77
73
apt-get autoremove -y && \
78
74
apt-get autoclean -y && \
79
75
rm -rf \
You can’t perform that action at this time.
0 commit comments