mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
18 lines
331 B
Docker
18 lines
331 B
Docker
# 17 lines 7 code 3 comments 7 blanks
|
|
|
|
FROM netbsd:7.0.2
|
|
|
|
MAINTAINER Somebody version: 2.2
|
|
|
|
RUN curl -sSf https://static.rust-lang.org/rustup.sh | sh -s -- -y
|
|
|
|
# this part is important
|
|
VOLUME ["/project"]
|
|
WORKDIR "/project"
|
|
|
|
RUN sh -c 'echo "Hello World" > /dev/null'
|
|
RUN cargo install tokei # not counted
|
|
|
|
# now you do your part
|
|
|