소스 검색

Need to add logging config to docker image

kirkleon 4 년 전
부모
커밋
2905c6afd8
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      server/Dockerfile

+ 2 - 0
server/Dockerfile

@@ -7,6 +7,8 @@ WORKDIR /app/
 ENV SQLALCHEMY_URL="sqlite:///./terrassumptions.db"
 
 COPY ./data /app/data
+  
+COPY logging.conf ./
 
 COPY requirements.txt ./