Skip to content

Commit a4596df

Browse files
committed
fix: add build steps to docker file
1 parent 026daae commit a4596df

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/juxtaposition-ui/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN --mount=type=bind,source=package.json,target=package.json \
2727
npm ci
2828

2929
COPY . .
30-
# RUN npm run build
30+
RUN npm run build
3131

3232

3333
# * Running the final application
@@ -43,6 +43,6 @@ USER node
4343
COPY package.json .
4444

4545
COPY --from=dependencies ${app_dir}/node_modules ${app_dir}/node_modules
46-
COPY --from=build ${app_dir}/src ${app_dir}/src
46+
COPY --from=build ${app_dir}/dist ${app_dir}/dist
4747

4848
CMD ["npm", "run", "start"]

0 commit comments

Comments
 (0)