Files
TK-FB-Project/web-ui/Dockerfile

11 lines
212 B
Docker

FROM nginx:alpine
# 정적 파일 복사
COPY . /usr/share/nginx/html/
# Nginx 설정 파일 복사 (선택사항)
# COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]