From f52c51b3442c32ce408eacde89fff24effa4e31a Mon Sep 17 00:00:00 2001 From: Luke Berndt Date: Wed, 6 Mar 2024 16:59:15 -0500 Subject: [PATCH] Update Dockerfile --- occlusion-mapper/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/occlusion-mapper/Dockerfile b/occlusion-mapper/Dockerfile index 33d3391..bc352bb 100644 --- a/occlusion-mapper/Dockerfile +++ b/occlusion-mapper/Dockerfile @@ -1,15 +1,15 @@ FROM node:16.17.1-alpine3.16 as build COPY client / -WORKDIR /client -RUN ls +WORKDIR / RUN npm install --force RUN npm run build + FROM iqtlabs/edgetech-core:latest RUN mkdir -p /static WORKDIR / -COPY --from=build /build/* /static +COPY --from=build /build/ /static COPY pyproject.toml . COPY poetry.lock . RUN pip3 install poetry==1.5.1