init
This commit is contained in:
commit
30cc8658b4
20
Dockerfile
Normal file
20
Dockerfile
Normal file
@ -0,0 +1,20 @@
|
||||
FROM archlinux/base:latest
|
||||
|
||||
RUN pacman -Syy --noconfirm
|
||||
|
||||
RUN pacman -S iputils nano gcc 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
|
4
run-docker.sh
Executable file
4
run-docker.sh
Executable file
@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
|
||||
docker build -t kinesis-arch .
|
||||
docker run -d --tty --name kinesis-arch kinesis-arch
|
Loading…
x
Reference in New Issue
Block a user