Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
robotastic committed Mar 6, 2024
1 parent 3a3d0f4 commit f52c51b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions occlusion-mapper/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit f52c51b

Please sign in to comment.