techscan 1.0.2

A tool for analyzing and visualizing technology stacks in codes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM rust:1.82-slim-bookworm

RUN apt-get update && apt-get upgrade -y && \
    apt-get install -y --no-install-recommends \
    git && \
    apt-get clean && \
    rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

RUN rustup component add \
    clippy \
    rustfmt \
    rust-analyzer

WORKDIR /workspace

CMD ["sleep", "infinity"]