소스 검색

Adjust example Dockerfile for adding new modules

Mike Dillon 10 년 전
부모
커밋
d74ff5c8de
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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
 ```