diff --git a/prod.dockerfile b/prod.dockerfile index 8eb3653..508ef6b 100644 --- a/prod.dockerfile +++ b/prod.dockerfile @@ -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"] diff --git a/src/user/application/user.controller.ts b/src/user/application/user.controller.ts index 42ec081..dc000e6 100644 --- a/src/user/application/user.controller.ts +++ b/src/user/application/user.controller.ts @@ -47,7 +47,6 @@ export class UserController { async getMe(@Req() request: any): Promise { const userId = request.user.id; const meEntity = await this.getMeUsecase.execute(userId); - console.log(meEntity); return meEntity; }