瀏覽代碼

Dockerfile: remove superfluous comments

Alexis 'Horgix' Chotard 9 年之前
父節點
當前提交
d1fbde2e9a
共有 1 個文件被更改,包括 0 次插入8 次删除
  1. 0 8
      Dockerfile

+ 0 - 8
Dockerfile

@@ -1,12 +1,7 @@
-# Radicale Dockerfile
-#
-# VERSION 0.3.1
-
 FROM alpine:latest
 
 MAINTAINER Radicale project "radicale@librelist.com"
 
-# Base packages
 RUN apk --update --update-cache upgrade \
       && apk add \
           python3 \
@@ -17,11 +12,8 @@ RUN apk --update --update-cache upgrade \
       && python3 -m ensurepip \
       && pip3 install --upgrade pip
 
-# Python installation
-# pip
 RUN pip3 install passlib bcrypt setuptools
 
-# Radicale installation
 RUN mkdir -p /data/config
 
 COPY . /data/radicale