File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -104,6 +104,10 @@ docker run -ti --rm \
104
104
| ` setuptools ` | ` python39-setuptools ` |
105
105
| ` pip ` | ` python39-pip ` |
106
106
| ` pylint ` | ` <via pip> ` |
107
+ | --------RUST---------| -------------------------------------|
108
+ | ` rustup ` | ` <sh.rustup.rs> ` |
109
+ | ` rust-src ` | ` <via rustup> ` |
110
+ | ` rust-analysis ` | ` <via rustup> ` |
107
111
| ------CLOUD----------| -------------------------------------|
108
112
| ` podman ` | ` container-tools:rhel8 ` |
109
113
| ` buildah ` | ` container-tools:rhel8 ` |
@@ -117,7 +121,7 @@ docker run -ti --rm \
117
121
| ` terraform ` | ` <releases.hashicorp.com> ` |
118
122
| ` docker ` | ` <download.docker.com> ` |
119
123
| ` docker-compose ` | ` <gh releases> ` |
120
- | ** TOTAL SIZE** | ** 4.48GB ** (1.9GB compressed) |
124
+ | ** TOTAL SIZE** | ** 6.03GB ** (2.21GB compressed) |
121
125
122
126
123
127
Original file line number Diff line number Diff line change @@ -119,6 +119,15 @@ ENV PHP_DEFAULT_INCLUDE_PATH=/usr/share/pear \
119
119
ENV DOTNET_RPM_VERSION=5.0
120
120
RUN dnf install -y dotnet-hostfxr-${DOTNET_RPM_VERSION} dotnet-runtime-${DOTNET_RPM_VERSION} dotnet-sdk-${DOTNET_RPM_VERSION}
121
121
122
+ # rust
123
+ ENV CARGO_HOME=/home/user/.cargo \
124
+ RUSTUP_HOME=/home/user/.rustup \
125
+ PATH=/home/user/.cargo/bin:${PATH}
126
+ RUN curl --proto '=https' --tlsv1.2 -sSfo rustup https://sh.rustup.rs && \
127
+ chmod +x rustup && \
128
+ mv rustup /usr/bin/ && \
129
+ rustup -y --no-modify-path --profile minimal -c rust-src -c rust-analysis -c rls
130
+
122
131
# Cloud
123
132
124
133
# # podman buildah skopeo
You can’t perform that action at this time.
0 commit comments