We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fcc22a commit bfd9140Copy full SHA for bfd9140
.gitignore
@@ -0,0 +1,10 @@
1
+# IDE Files
2
+.idea
3
+*.iml
4
+
5
+# OS generated files
6
+.DS_Store
7
+.DS_Store?
8
+ehthumbs.db
9
+Thumbs.db
10
Dockerfile
@@ -1,12 +1,12 @@
FROM tomcat:8.5
+# Install some useful basic utilities
+RUN apt-get update && apt-get install -y nano vim procps htop dnsutils
# Clean up standard bundled webapps
RUN cd webapps && \
rm -rf ROOT* && \
rm -rf docs && \
rm -rf examples && \
11
rm -rf manager && \
12
rm -rf host-manager
-
-# Install some useful basic utilities
-RUN apt-get update && apt-get install -y nano vim procps htop dnsutils
0 commit comments