We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents df168cd + dee3dd1 commit 8f7011bCopy full SHA for 8f7011b
2 files changed
prod.dockerfile
@@ -27,6 +27,8 @@ ENV NODE_ENV=production
27
28
COPY scripts/server-start.sh ./server-start.sh
29
30
+COPY .env ./
31
+
32
RUN chmod +x ./server-start.sh
33
34
CMD ["./server-start.sh"]
src/user/application/user.controller.ts
@@ -47,7 +47,6 @@ export class UserController {
47
async getMe(@Req() request: any): Promise<MeResDto> {
48
const userId = request.user.id;
49
const meEntity = await this.getMeUsecase.execute(userId);
50
- console.log(meEntity);
51
return meEntity;
52
}
53
0 commit comments