aboutsummaryrefslogtreecommitdiff
path: root/files/.vim/templates
diff options
context:
space:
mode:
authorAnton Bobov <anton@bobov.name>2023-08-05 23:33:24 +0500
committerAnton Bobov <anton@bobov.name>2023-08-05 23:33:24 +0500
commit5e90863365043bad15617abbd9a39bdd3d020eb5 (patch)
tree6cfe2b6a13d913126b929b9b37d43d5081f70362 /files/.vim/templates
parent3f532c7393edea16117b14b20c63cd128480d4bf (diff)
[vim] Add http syntax and updated Dockerfile template
Diffstat (limited to 'files/.vim/templates')
-rw-r--r--files/.vim/templates/=template=Dockerfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/files/.vim/templates/=template=Dockerfile b/files/.vim/templates/=template=Dockerfile
index 73bebac..f4e563c 100644
--- a/files/.vim/templates/=template=Dockerfile
+++ b/files/.vim/templates/=template=Dockerfile
@@ -1,5 +1,7 @@
FROM abobov/debian:testing
-MAINTAINER Anton Bobov <abobov@gmail.com>
+LABEL maintainer="Anton Bobov <abobov@gmail.com>"
-RUN apt-get update && apt-get install -y %HERE%
+RUN apt-get update && apt-get install --no-install-recommends -y %HERE% \
+ && apt-get clean \
+ && rm -rf /var/lib/apt/lists/*