alpha
Login
or
Join now
tsiry-sandratraina.com
/
rockboxd
Star
2
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
A modern, network-enabled music player platform built on Rockbox technology.
rockboxd.tsiry-sandratraina.com
rust
deno
navidrome
airplay
libadwaita
zig
mpris
snapcast
mpd
rockbox
audio
subsonic
Star
2
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
configure devcontainer
author
Tsiry Sandratraina
date
2 years ago
(Sep 25, 2024, 3:26 PM UTC)
commit
4f290adb
4f290adb8a2278aa7be5635eb470e86fc148e524
parent
afc4bc40
afc4bc40bb84870561ad2bbc17e35a64231287e4
+35
2 changed files
Expand all
Collapse all
Unified
Split
.devcontainer
Dockerfile
devcontainer.json
+26
.devcontainer/Dockerfile
View file
Reviewed
···
1
1
+
FROM rust:1.81-bookworm
2
2
+
3
3
+
RUN apt-get update && apt-get install -y build-essential \
4
4
+
libusb-dev \
5
5
+
libsdl1.2-dev \
6
6
+
libfreetype6-dev \
7
7
+
libunwind-dev \
8
8
+
curl \
9
9
+
zip \
10
10
+
unzip \
11
11
+
git \
12
12
+
protobuf-compiler
13
13
+
14
14
+
RUN curl -Ssf https://pkgx.sh | sh
15
15
+
16
16
+
RUN pkgx install zig@0.13.0
17
17
+
18
18
+
RUN curl -s https://ohmyposh.dev/install.sh | bash -s -- -d /usr/local/bin
19
19
+
20
20
+
RUN git clone https://github.com/JanDeDobbeleer/oh-my-posh.git .oh-my-posh
21
21
+
22
22
+
RUN echo 'eval "$(oh-my-posh init bash --config ~/.cache/oh-my-posh/themes/tokyonight_storm.omp.json)"' >> /root/.bashrc
23
23
+
24
24
+
RUN curl --proto '=https' --tlsv1.2 -sSf https://setup.atuin.sh | bash
25
25
+
26
26
+
ENV BASH_ENV=/root/.bashrc
+9
.devcontainer/devcontainer.json
View file
Reviewed
···
1
1
+
{
2
2
+
"build": {
3
3
+
// Path is relative to the devcontainer.json file.
4
4
+
"dockerfile": "Dockerfile"
5
5
+
},
6
6
+
"features": {
7
7
+
"ghcr.io/devcontainers/features/github-cli:1": {}
8
8
+
}
9
9
+
}