Skip to content

Commit

Permalink
fix: be services build
Browse files Browse the repository at this point in the history
  • Loading branch information
vasyl-ivanchuk committed Sep 20, 2023
1 parent 8cf1ab2 commit e48b22c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@
{
"assets": [
{
"path": "dist.zip",
"path": "packages/app/dist.zip",
"label": "App dist package"
},
{
"path": "storybook-static.zip",
"path": "packages/app/storybook-static.zip",
"label": "Storybook package"
}
]
Expand Down
4 changes: 2 additions & 2 deletions packages/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN npm run build

FROM base-stage AS production-stage

COPY --chown=node:node --from=build-stage /usr/src/app/packages/api/dist ./dist
COPY --chown=node:node --from=build-stage /usr/src/app/packages/api/dist ./packages/api/dist

ARG NODE_ENV=production
ENV NODE_ENV $NODE_ENV
Expand All @@ -39,4 +39,4 @@ EXPOSE $PORT $METRICS_PORT 9229 9230

USER node

CMD [ "node", "dist/main.js" ]
CMD [ "node", "packages/api/dist/main.js" ]
Loading

0 comments on commit e48b22c

Please sign in to comment.