feat(rio): removed as unused

master
oxypomme 2024-02-12 13:39:45 +01:00
parent 03d8d66929
commit ec2526068c
2 changed files with 0 additions and 27 deletions

View File

@ -1,23 +0,0 @@
# Rio is a terminal writted in Rust
FROM ubuntu:20.04
WORKDIR /build/rio
ENV PATH="/root/.cargo/bin:${PATH}"
ENV DEBIAN_FRONTEND=noninteractive
# Install deps
RUN apt update -y \
&& apt upgrade -y \
&& apt install -y git curl cmake pkg-config libfreetype6-dev libfontconfig1-dev libxcb-xfixes0-dev libxkbcommon-dev python3
# Install Rust
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
RUN rustup override set stable \
&& rustup update stable
# Clone repo
RUN git clone https://github.com/raphamorim/rio.git /build/rio
# Build
RUN cargo build --release --no-default-features --features=x11
CMD ["sleep", "infinity"]

View File

@ -1,4 +0,0 @@
docker build -f build-rio.dockerfile --no-cache -t build-rio:latest .
docker run -d --name build-rio build-rio:latest
docker cp build-rio:/build/rio/target/release/rio ~/bin/rio
docker remove -f build-rio