All checks were successful
Build / Build - linux (push) Successful in 6m30s
10 lines
229 B
Docker
10 lines
229 B
Docker
FROM rust:latest
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
nodejs \
|
|
npm \
|
|
tar \
|
|
gzip \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& rm -f /bin/tar \
|
|
&& ln -s /usr/bin/tar /bin/tar |