From 2bfe860d736895921306062df4b0c60041d98691 Mon Sep 17 00:00:00 2001 From: MrFlutters Date: Fri, 3 May 2019 16:34:03 +0100 Subject: [PATCH] Cleaned up gitlab-ci and Dockerfile --- .gitlab-ci.yml | 1 - Dockerfile | 5 ----- 2 files changed, 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d7ce55e..4daf995 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,6 @@ # This file is a template, and might need editing before it works on your project. # Official docker image. image: docker:latest - services: - docker:dind diff --git a/Dockerfile b/Dockerfile index 05ebd12..eb3a132 100755 --- a/Dockerfile +++ b/Dockerfile @@ -7,13 +7,8 @@ COPY ["package.json", "./"] COPY ["package-lock.json", "./"] FROM base AS builder -# ENV PARCEL_WORKERS=2 RUN npm set progress=false && npm config set depth 0 && npm install COPY ["src/", "./src"] -# ARG VERSION=Missing -# ENV VERSION=$VERSION -# ARG COMMIT=Missing -# ENV COMMIT=$COMMIT RUN npm run Prod FROM nginx:1.14.1-alpine as Web