소스 파일 최초 업로드
This commit is contained in:
12
Dockerfile
Normal file
12
Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
# base 이미지 설정
|
||||
FROM tomcat:9.0.74
|
||||
|
||||
# 명령들을 수행할 디렉토리 설정
|
||||
WORKDIR /usr/local/tomcat
|
||||
|
||||
# 수행할 명령 작성
|
||||
# 기존 tomcat 내부 파일 삭제
|
||||
RUN rm -rf *
|
||||
|
||||
# InterMAX 테스트용 애플리케이션 및 tomcat 파일 추가
|
||||
COPY ./tomcat/* ./
|
||||
Reference in New Issue
Block a user