From 4204515e91377cc367b3c01a0918187bb2a32cd1 Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Fri, 19 Aug 2022 01:23:20 +0200 Subject: [PATCH] Updated COPY and RUN commands for new project dir structure --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cac42f9..3704ca2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,13 @@ FROM node:18 -RUN mkdir -p /opt/seasonedShows/seasoned_api +RUN mkdir -p /opt/seasonedShows/src WORKDIR /opt/seasonedShows -COPY seasoned_api/ seasoned_api +COPY src/ src +COPY configurations/ configurations COPY package.json . +COPY yarn.lock . RUN apt update RUN apt install node-pre-gyp -y