Skip to content

Commit 3d425dc

Browse files
committed
Remove srcml from build stage
1 parent b2f5afd commit 3d425dc

1 file changed

Lines changed: 0 additions & 12 deletions

File tree

Dockerfile

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1212
&& apt-get clean \
1313
&& rm -rf /var/lib/apt/lists/*
1414

15-
# Install srcML (runtime + dev headers)
16-
RUN if [ "$TARGETARCH" = "amd64" ]; then \
17-
wget https://github.com/srcML/srcML/releases/download/v1.1.0/srcml_1.1.0-1_ubuntu24.04_amd64.deb \
18-
&& wget https://github.com/srcML/srcML/releases/download/v1.1.0/srcml-dev_1.1.0-1_ubuntu24.04_amd64.deb; \
19-
elif [ "$TARGETARCH" = "arm64" ]; then \
20-
wget https://github.com/srcML/srcML/releases/download/v1.1.0/srcml_1.1.0-1_ubuntu24.04_arm64.deb \
21-
&& wget https://github.com/srcML/srcML/releases/download/v1.1.0/srcml-dev_1.1.0-1_ubuntu22.04_arm64.deb; \
22-
else \
23-
echo "Unsupported arch: $TARGETARCH" && exit 1; \
24-
fi && \
25-
apt-get update && apt-get install -y ./*.deb && rm -f ./*.deb
26-
2715
# Build and install srcSAX
2816
RUN mkdir -p /srcSAX \
2917
&& wget -O /tmp/srcSAX.tar.gz https://github.com/srcML/srcSAX/archive/refs/heads/master.tar.gz \

0 commit comments

Comments
 (0)