Skip to content

Commit

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

- name: Build Docker image
run: |
docker build -f ./apps/api/Dockerfile
docker build -f apps/api/Dockerfile
2 changes: 1 addition & 1 deletion .github/workflows/build_web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ jobs:

- name: Build Docker image
run: |
docker build -f ./apps/web/Dockerfile
docker build -f apps/web/Dockerfile
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 5 ${port}`);
log(`api running on 6 ${port}`);
});

0 comments on commit 3362891

Please sign in to comment.