We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3834433 commit 8f74125Copy full SHA for 8f74125
Dockerfile
@@ -0,0 +1,10 @@
1
+FROM localhost/runner:ubuntu.24.04
2
+ARG REPO TOKEN
3
+USER root
4
+ENV DEBIAN_FRONTEND=noninteractive
5
+RUN apt-get -qq update -y && \
6
+ apt-get -qq -y install wget linux-headers-generic && \
7
+ apt autoclean
8
+USER runner
9
+RUN /opt/runner/config.sh --url ${REPO} --token ${TOKEN}
10
+CMD /opt/runner/run.sh
Makefile
@@ -3,7 +3,7 @@ VERSION=3.0
RELEASE=1
obj-m := fsiucv.o
-LEVEL := `uname -r`
+LEVEL := $(shell ls /lib/modules/ | tail -1 | xargs basename)
KDIR := /usr/src/linux-headers-$(LEVEL)
PWD := $(shell pwd)
DIST_FILES := ChangeLog fsiucv.c fsiucv.h fsiucv.spec HOW-TO \
0 commit comments