From 7d154bdaa65fa8165c552b0a43453d6ca3c0fd8a Mon Sep 17 00:00:00 2001 From: newnius Date: Thu, 30 Mar 2017 17:11:20 +0800 Subject: [PATCH] remove install vim to make it small --- hexo/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hexo/Dockerfile b/hexo/Dockerfile index 802bcef..33cf46c 100644 --- a/hexo/Dockerfile +++ b/hexo/Dockerfile @@ -2,7 +2,7 @@ FROM node:latest MAINTAINER Newnius -RUN apt-get -y update && apt-get -y install git && apt-get install -y vim && npm install -g hexo-cli +RUN apt-get -y update && apt-get -y install git && npm install -g hexo-cli RUN npm install hexo-generator-feed --save