parent
42c2c8cedb
commit
6dc4a576af
@ -0,0 +1,13 @@
|
||||
# .git 과 .cache 폴더를 무시
|
||||
.git
|
||||
.cache
|
||||
|
||||
# 모든 마크다운 파일들 (md) 파일들을 무시,
|
||||
# 모든 README*.md 파일 무시
|
||||
*.md
|
||||
IREADME*.md
|
||||
|
||||
node_modules
|
||||
npm-debug.log
|
||||
# build
|
||||
.idea
|
@ -0,0 +1,22 @@
|
||||
FROM nginx
|
||||
|
||||
ADD ./build /usr/share/nginx/html
|
||||
|
||||
# 80 포트 오픈
|
||||
EXPOSE 80
|
||||
|
||||
# container 실행 시 nginx 시작함
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
||||
|
||||
# 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
|
@ -1,10 +0,0 @@
|
||||
#nginx.config
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
location / {
|
||||
root /app/build;
|
||||
index index.html;
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue