diff --git a/projects/unblob/Dockerfile b/projects/unblob/Dockerfile index 3f452e1d9833..7cd9f30f0b9d 100644 --- a/projects/unblob/Dockerfile +++ b/projects/unblob/Dockerfile @@ -12,9 +12,17 @@ # See the License for the specific language governing permissions and # limitations under the License. FROM gcr.io/oss-fuzz-base/base-builder-python + RUN pip3 install --upgrade pip + +RUN curl https://sh.rustup.rs -sSf | sh -s -- -y +ENV PATH="/root/.cargo/bin:${PATH}" +RUN rustup install stable +RUN rustup default stable + RUN git clone https://github.com/onekey-sec/unblob -RUN unblob/unblob/install-deps.sh + +RUN unblob/install-deps.sh RUN pip install ./unblob COPY build.sh $SRC/