We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3190db5 commit 0e075c5Copy full SHA for 0e075c5
external_plugins/power_measuring_plugin/Dockerfile-powerjoular
@@ -0,0 +1,18 @@
1
+FROM ubuntu:24.04
2
+
3
+# get the ada compiler
4
+RUN apt-get update && apt-get install -y gnat gprbuild git
5
6
+# get the powerjoular source
7
+RUN git clone https://github.com/joular/powerjoular.git
8
9
+# compile the code
10
+WORKDIR /powerjoular
11
+RUN gprbuild
12
13
+# copy the binary to bin
14
+RUN cp obj/powerjoular /usr/bin/powerjoular
15
16
+# set powerjoular as the entrypoint
17
+WORKDIR /
18
+ENTRYPOINT ["/usr/bin/powerjoular"]
0 commit comments