From 3f76fb0a819b8f784d05af835a78cdbb86097f41 Mon Sep 17 00:00:00 2001 From: Jay Ehsaniara Date: Mon, 12 Jul 2021 23:54:27 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20fixing=20the=20deployment=20plan?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scs-101/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scs-101/Dockerfile b/scs-101/Dockerfile index 7410d1a..174a3b5 100644 --- a/scs-101/Dockerfile +++ b/scs-101/Dockerfile @@ -1,8 +1,8 @@ #Jay Ehsaniara, Dockerfile should be in project root where pom.xml locates FROM maven:3.6.3-jdk-11-slim AS maven_builder ARG GITHUB_TOKEN -COPY scs-101-inventory-check/pom.xml /application/ -COPY scs-101-inventory-check/src /application/src/ +COPY /pom.xml /application/ +COPY /src /application/src/ WORKDIR /application/ RUN \ if [ "x$GITHUB_TOKEN" = "x" ] ; then \