fix: type 오류 fix
parent
e7e7957507
commit
42c2c8cedb
@ -0,0 +1,25 @@
|
|||||||
|
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;"]
|
@ -0,0 +1,10 @@
|
|||||||
|
#nginx.config
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
location / {
|
||||||
|
root /app/build;
|
||||||
|
index index.html;
|
||||||
|
try_files $uri $uri/ /index.html;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue