Skip to content
Merged

Dev #141

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions prod.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ ENV NODE_ENV=production

COPY scripts/server-start.sh ./server-start.sh

COPY .env ./

RUN chmod +x ./server-start.sh

CMD ["./server-start.sh"]
1 change: 0 additions & 1 deletion src/user/application/user.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ export class UserController {
async getMe(@Req() request: any): Promise<MeResDto> {
const userId = request.user.id;
const meEntity = await this.getMeUsecase.execute(userId);
console.log(meEntity);
return meEntity;
}

Expand Down
Loading