8000 Remove stdlib from other archs · sudo-bot/docker-rustpython@9d5c796 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9d5c796

Browse files
committed
Remove stdlib from other archs
1 parent 2f84740 commit 9d5c796

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN sed -i 's#{ git = .*#{ path = "/workdir/rp__doc__/" }#' /workdir/derive-impl
2525

2626
RUN cargo fetch
2727

28-
RUN if [ "$(uname -m)" != "ppc64le" ] && [ "$(uname -m)" != "s390x" ] && [ "$(uname -m)" != "aarch64" ]; then cargo build --features freeze-stdlib --release --locked --offline --bin rustpython; else cargo build --release --locked --offline --bin rustpython; fi
28+
RUN if [ "$(uname -m)" != "ppc64le" ] && [ "$(uname -m)" != "s390x" ] && [ "$(uname -m)" != "aarch64" ]; then cargo build --features freeze-stdlib --release --locked --offline --bin rustpython; else cargo build --no-default-features --features threading,zlib,importlib,rustpython-parser/lalrpop --release --locked --offline --bin rustpython; fi
2929

3030
FROM alpine:3.17
3131

0 commit comments

Comments
 (0)
0