Selaa lähdekoodia

Adjust example Dockerfile for adding new modules

Mike Dillon 10 vuotta sitten
vanhempi
sitoutus
d74ff5c8de
1 muutettua tiedostoa jossa 2 lisäystä ja 1 poistoa
  1. 2 1
      jetty/content.md

+ 2 - 1
jetty/content.md

@@ -52,7 +52,8 @@ To update the server configuration in a derived Docker image, the `Dockerfile` m
 enable additional modules with `RUN` commands like:
 
 ```Dockerfile
-WORKDIR $JETTY_BASE
+FROM jetty:9
+
 RUN java -jar "$JETTY_HOME/start.jar" --add-to-startd=jmx,stats
 ```