소스 파일 최초 업로드

This commit is contained in:
ByeonJungHun
2024-04-05 10:31:45 +09:00
commit 718e6822af
682 changed files with 90848 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
# base 이미지 설정
FROM tomcat:9.0.74
# 명령들을 수행할 디렉토리 설정
WORKDIR /usr/local/tomcat
# 수행할 명령 작성
# 기존 tomcat 내부 파일 삭제
RUN rm -rf *
# InterMAX 테스트용 애플리케이션 및 tomcat 파일 추가
COPY ./tomcat/* ./