updated docker #8

Merged
hardik merged 1 commits from fix/ssh_issue into main 2025-08-30 13:25:27 +05:30
1 changed files with 3 additions and 0 deletions
Showing only changes of commit f3db2b9aaa - Show all commits

View File

@ -7,6 +7,9 @@ RUN rm -rf /usr/share/nginx/html/*
# Copy your HTML/CSS/JS files into nginx's web root
COPY . /usr/share/nginx/html
# Create /app/build and link/copy files for pipeline compatibility
RUN mkdir -p /app && ln -s /usr/share/nginx/html /app/build
# Expose port 80 for the web server
EXPOSE 80