From 3021e88bc720bbc29789f9802ff708aaa171706a Mon Sep 17 00:00:00 2001 From: Jonas Leder <jonas@jonasled.de> Date: Mon, 11 Jan 2021 16:18:10 +0100 Subject: [PATCH] labeled build-container more clear --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index ae36f2b..8e40a54 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -# Bootstrap CSS -FROM ruby:latest AS build-env +# Bootstrap SCSS +FROM ruby:latest AS build-scss WORKDIR /build COPY . /build RUN mkdir /build/public/css @@ -51,4 +51,4 @@ ENV APACHE_RUN_USER=www-data \ # |-------------------------------------------------------------------------- # | Add php files of website # |-------------------------------------------------------------------------- -COPY --from=build-env /build/public /var/www/html \ No newline at end of file +COPY --from=build-scss /build/public /var/www/html \ No newline at end of file -- GitLab