You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
560 B
Docker
25 lines
560 B
Docker
3 years ago
|
FROM nginx
|
||
|
|
||
|
# root 에 app 폴더를 생성
|
||
|
RUN mkdir /app
|
||
|
|
||
|
# work dir 고정
|
||
|
WORKDIR /app
|
||
|
|
||
|
# work dir 에 build 폴더 생성 /app/build
|
||
|
RUN mkdir ./build
|
||
|
|
||
|
# host pc의 현재경로의 build 폴더를 workdir 의 build 폴더로 복사
|
||
|
ADD ./build ./build
|
||
|
|
||
|
# nginx 의 default.conf backup
|
||
|
RUN mv /etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf.backup
|
||
|
|
||
|
# host pc 의 nginx.conf 를 아래 경로에 복사
|
||
|
COPY ./nginx.conf /etc/nginx/conf.d
|
||
|
|
||
|
# 80 포트 오픈
|
||
|
EXPOSE 80
|
||
|
|
||
|
# container 실행 시 nginx 시작함
|
||
|
CMD ["nginx", "-g", "daemon off;"]
|