We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b8d03a commit b528b8cCopy full SHA for b528b8c
2 files changed
fedora-runner/Containerfile
@@ -0,0 +1,11 @@
1
+FROM fedora:43
2
+
3
+RUN dnf install -y \
4
+ clang \
5
+ git \
6
+ libbpf-devel \
7
+ nodejs \
8
+ openssl-devel \
9
+ protobuf-devel \
10
+ rustup-init && \
11
+ rustup-init -y
fedora-runner/justfile
@@ -0,0 +1,10 @@
+image := "quay.io/mmoltras/devcontainers:fedora-runner"
+build:
+ docker build \
+ --tag {{image}} \
+ -f Containerfile \
+ `pwd`
+push:
+ docker push {{image}}
0 commit comments