File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- FROM riscv64/ubuntu:focal as base
1
+ FROM riscv64/ubuntu:focal AS base
2
2
3
3
RUN apt-get update && \
4
4
DEBIAN_FRONTEND="noninteractive" apt-get install -y tree build-essential cmake curl wget git make pkg-config libgmp-dev libboost-dev libssl-dev zlib1g zlib1g-dev libreadline-dev libffi-dev && \
5
5
rm -rf /var/lib/apt/lists/*
6
6
7
- FROM base as ld
7
+ FROM base AS ld
8
8
9
9
RUN curl -L -O https://ftpmirror.gnu.org/gnu/binutils/binutils-2.38.tar.gz && \
10
10
tar -xvzf binutils-2.38.tar.gz && \
@@ -15,7 +15,7 @@ RUN curl -L -O https://ftpmirror.gnu.org/gnu/binutils/binutils-2.38.tar.gz && \
15
15
tree /opt && \
16
16
/opt/ld/bin/ld --version
17
17
18
- FROM base as sqlite
18
+ FROM base AS sqlite
19
19
20
20
RUN curl -L -O https://sqlite.org/2022/sqlite-autoconf-3400100.tar.gz && \
21
21
tar -xvzf sqlite-autoconf-3400100.tar.gz && \
@@ -26,7 +26,7 @@ RUN curl -L -O https://sqlite.org/2022/sqlite-autoconf-3400100.tar.gz && \
26
26
tree /opt && \
27
27
/opt/sqlite3/bin/sqlite3 -version
28
28
29
- FROM base as final
29
+ FROM base AS final
30
30
31
31
COPY --from=ld /opt/ld /usr
32
32
You can’t perform that action at this time.
0 commit comments