Skip to content

Commit f1ee78a

Browse files
committed
fix github actions build
1 parent 8f7f84f commit f1ee78a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Build/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,10 @@ RUN dnf -y module enable python39 && \
2929
# RUN dnf -y install libicu libicu-devel
3030

3131
# Free Pascal 3.0.4
32-
RUN (cd /opt && curl -O -L 'http://downloads.sourceforge.net/project/freepascal/Linux/3.0.4/fpc-3.0.4-1.x86_64.rpm' \
33-
&& rpm -i fpc-3.0.4-1.x86_64.rpm)
32+
RUN cd /opt && \
33+
curl -L -o fpc-3.0.4-1.x86_64.rpm 'https://sourceforge.net/projects/freepascal/files/Linux/3.0.4/fpc-3.0.4-1.x86_64.rpm/download' && \
34+
rpm -i fpc-3.0.4-1.x86_64.rpm && \
35+
rm -f fpc-3.0.4-1.x86_64.rpm
3436

3537
# Go
3638
RUN (cd /opt && curl -O -L https://golang.org/dl/go1.17.2.linux-amd64.tar.gz && tar zxvf go1.17.2.linux-amd64.tar.gz)

0 commit comments

Comments
 (0)