Created Rust project
This commit is contained in:
parent
a527abe4a6
commit
bbe9059516
@ -1,8 +1,8 @@
|
||||
FROM alpine:latest
|
||||
# Install dependencies
|
||||
RUN apk add --no-cache --update git ca-certificates curl openssh-client
|
||||
RUN apk add --no-cache --update g++ zsh git ca-certificates curl openssh-client
|
||||
# Add my user
|
||||
RUN adduser Entity -h /home/Entity -S
|
||||
RUN adduser Entity -h /home/Entity -S --shell /bin/zsh
|
||||
RUN addgroup Entity
|
||||
RUN adduser Entity Entity
|
||||
# Switch to my user
|
||||
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
SSH-Transfer/target
|
7
SSH-Transfer/Cargo.lock
generated
Normal file
7
SSH-Transfer/Cargo.lock
generated
Normal file
@ -0,0 +1,7 @@
|
||||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
version = 3
|
||||
|
||||
[[package]]
|
||||
name = "SSH-Transfer"
|
||||
version = "0.1.0"
|
10
SSH-Transfer/Cargo.toml
Normal file
10
SSH-Transfer/Cargo.toml
Normal file
@ -0,0 +1,10 @@
|
||||
[package]
|
||||
name = "SSH-Transfer"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[[bin]]
|
||||
name = "SSH-Transfer"
|
||||
path = "Source/App.rs"
|
||||
|
||||
[dependencies]
|
3
SSH-Transfer/Source/App.rs
Normal file
3
SSH-Transfer/Source/App.rs
Normal file
@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
Loading…
Reference in New Issue
Block a user