Skip to content

Commit

Permalink
fix path and test docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
lamminhthien committed Jun 13, 2024
1 parent 35f22f2 commit 4b1dd51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ jobs:

- name: Build Docker image
run: |
cd apps/api
docker build .
1 change: 1 addition & 0 deletions .github/workflows/build_web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ jobs:

- name: Build Docker image
run: |
cd apps/web
docker build .
2 changes: 1 addition & 1 deletion apps/api/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ const port = process.env.PORT || 3001;
const server = createServer();

server.listen(port, () => {
log(`api running on 2 ${port}`);
log(`api running on 3 ${port}`);
});

0 comments on commit 4b1dd51

Please sign in to comment.