We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f7f84f commit f1ee78aCopy full SHA for f1ee78a
Build/Dockerfile
@@ -29,8 +29,10 @@ RUN dnf -y module enable python39 && \
29
# RUN dnf -y install libicu libicu-devel
30
31
# 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)
+RUN cd /opt && \
+ 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
36
37
# Go
38
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