Skip to content

Commit

Permalink
Test if its quoting problem
Browse files Browse the repository at this point in the history
  • Loading branch information
scottopell committed Oct 19, 2023
1 parent 48c4efc commit 9dfe1b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/misbehaving-jmx-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN mvn dependency:resolve

# Copy the source code and build the JAR file
COPY src/ /app/src/
RUN mvn clean package assembly:single
RUN "mvn clean package assembly:single"

RUN ls /app/target

Expand All @@ -24,4 +24,4 @@ WORKDIR /app
COPY --from=build /app/target/misbehavingjmxserver-1.0-SNAPSHOT-jar-with-dependencies.jar .

# Run the supervisor class from the jar
CMD ["java", "-cp", "misbehavingjmxserver-1.0-SNAPSHOT-jar-with-dependencies.jar", "org.datadog.supervisor.App"]
CMD ["java", "-cp", "misbehavingjmxserver-1.0-SNAPSHOT-jar-with-dependencies.jar", "org.datadog.supervisor.App"]

0 comments on commit 9dfe1b7

Please sign in to comment.