From c76264faa2ac3d81bb2ce42586f85d95ffdb1742 Mon Sep 17 00:00:00 2001 From: jakobblume Date: Wed, 12 Dec 2018 16:00:56 +0100 Subject: [PATCH] moved comments to top of the file and updated deprecated maintainer instruction with appropriate label --- Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index a0c499e..c11b756 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,13 @@ +# Running this container will start a language server that listens for TCP connections on port 2088 +# Every connection will be run in a forked child process FROM composer AS builder COPY ./ /app RUN composer install -# Running this container will start a language server that listens for TCP connections on port 2088 -# Every connection will be run in a forked child process - FROM php:7-cli -MAINTAINER Felix Becker +LABEL maintainer="Felix Becker " RUN docker-php-ext-configure pcntl --enable-pcntl RUN docker-php-ext-install pcntl