We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77c358d commit 2255496Copy full SHA for 2255496
Dockerfile
@@ -1,7 +1,14 @@
1
FROM wpilib/ubuntu-base:22.04
2
3
-COPY ./run.sh /inspector/run.sh
4
-ADD https://github.com/Starlight220/Inspector/releases/download/v1.5/Inspector.jar /inspector/build/libs/Inspector.jar
+## Release
+#COPY ./run.sh /inspector/run.sh
5
+#ADD https://github.com/Starlight220/Inspector/releases/download/v1.5/Inspector.jar /inspector/build/libs/Inspector.jar
6
+
7
+# Development
8
+COPY . /inspector/
9
+RUN chmod +x /inspector/gradlew
10
+RUN cd /inspector/ && ./gradlew jar
11
12
13
RUN chmod +x /inspector/run.sh
14
0 commit comments