Commit f668c8f 1 parent 392bc7d commit f668c8f Copy full SHA for f668c8f
File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -46,12 +46,17 @@ RUN cargo build --release
46
46
FROM docker.io/ubuntu:noble
47
47
48
48
ENV DEBIAN_FRONTEND=noninteractive
49
+ ENV PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.cargo/bin/:/root/.dotnet/tools"
49
50
50
51
RUN apt-get update && \
51
- apt-get install -y --no-install-recommends curl default-jre-headless && \
52
+ apt-get install -y --no-install-recommends curl default-jre-headless dotnet8 && \
52
53
apt-get clean
53
54
54
- # Rust
55
+
56
+ # C#
57
+ RUN dotnet tool install csharpier --version 0.30.6 -g
58
+
59
+ # # Rust
55
60
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- \
56
61
-y \
57
62
--profile minimal \
@@ -60,7 +65,6 @@ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- \
60
65
--default-toolchain nightly-2025-02-27 \
61
66
--component rustfmt
62
67
63
- ENV PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.cargo/bin/"
64
68
65
69
# Javascript
66
70
COPY --from=ghcr.io/biomejs/biome:1.9.4 /usr/local/bin/biome /usr/bin/biome
You can’t perform that action at this time.
0 commit comments