Skip to content

Commit bfd9140

Browse files
committed
Add .gitignore
+ Flip order of dockerfile commands for consistency with xh-nginx image updates
1 parent 4fcc22a commit bfd9140

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
FROM tomcat:8.5
22

3+
# Install some useful basic utilities
4+
RUN apt-get update && apt-get install -y nano vim procps htop dnsutils
5+
36
# Clean up standard bundled webapps
47
RUN cd webapps && \
58
rm -rf ROOT* && \
69
rm -rf docs && \
710
rm -rf examples && \
811
rm -rf manager && \
912
rm -rf host-manager
10-
11-
# Install some useful basic utilities
12-
RUN apt-get update && apt-get install -y nano vim procps htop dnsutils

0 commit comments

Comments
 (0)