first commit
Some checks failed
Deploy Application / deploy (push) Failing after 42s

This commit is contained in:
2025-06-11 22:01:09 +04:00
parent f150cd1ba4
commit f3528d64b8
2 changed files with 49 additions and 5 deletions

View File

@ -18,12 +18,56 @@ RUN npm run build
# Production stage # Production stage
FROM nginx:alpine FROM nginx:alpine
# Install necessary tools
RUN apk add --no-cache curl
# Create nginx configuration
RUN echo 'server { \
listen 80; \
server_name localhost; \
root /usr/share/nginx/html; \
index index.html; \
\
# Gzip compression \
gzip on; \
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript; \
\
# Security headers \
add_header X-Frame-Options "SAMEORIGIN"; \
add_header X-XSS-Protection "1; mode=block"; \
add_header X-Content-Type-Options "nosniff"; \
\
# Trust proxy headers \
real_ip_header X-Forwarded-For; \
set_real_ip_from 0.0.0.0/0; \
\
# Handle proxy headers \
proxy_set_header Host $host; \
proxy_set_header X-Real-IP $remote_addr; \
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; \
proxy_set_header X-Forwarded-Proto $scheme; \
\
location / { \
try_files $uri $uri/ /index.html; \
} \
\
# Cache static assets \
location /assets/ { \
expires 1y; \
add_header Cache-Control "public, no-transform"; \
} \
\
# Error pages \
error_page 404 /index.html; \
error_page 500 502 503 504 /50x.html; \
location = /50x.html { \
root /usr/share/nginx/html; \
} \
}' > /etc/nginx/conf.d/default.conf
# Copy built assets from build stage # Copy built assets from build stage
COPY --from=build /app/dist /usr/share/nginx/html COPY --from=build /app/dist /usr/share/nginx/html
# Copy nginx configuration
COPY nginx.conf /etc/nginx/conf.d/default.conf
# Expose port 80 # Expose port 80
EXPOSE 80 EXPOSE 80

View File

@ -5,8 +5,8 @@ services:
build: build:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
ports: expose:
- "3000:80" - "80"
restart: unless-stopped restart: unless-stopped
environment: environment:
- NODE_ENV=production - NODE_ENV=production