Updated COPY and RUN commands for new project dir structure

This commit is contained in:
2022-08-19 01:23:20 +02:00
parent 19e99e8c43
commit 4204515e91

View File

@@ -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