custom-docker/Dockerfile
Kishan Takoordyal 5df770e3ae
add glibc
2021-02-12 08:25:53 +04:00

21 lines
451 B
Docker

FROM archlinux/base:latest
RUN pacman -Syy --noconfirm
RUN pacman -S iputils nano gcc glibc nodejs npm unzip --noconfirm
RUN node -v && \
npm i npm@latest -g && \
npm -v
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh && \
rustc --version
RUN cargo new hello_world && \
cd hello_world/ && \
cargo run
RUN curl -fsSL https://deno.land/x/install/install.sh | sh && \
deno upgrade && \
deno --version