🗑️ Remove Dockerfile for Pokedex Online website

This commit is contained in:
2026-01-29 06:33:24 +00:00
parent 31c40ecd6b
commit 4e3c1deaac

View File

@@ -0,0 +1,13 @@
# Production stage - serve pre-built Vue 3 application
FROM nginx:alpine
# Copy pre-built assets to nginx html directory
COPY dist /usr/share/nginx/html
# Copy nginx configuration with API proxy for CORS
COPY nginx.conf /etc/nginx/conf.d/default.conf
# Expose both HTTP and HTTPS ports
EXPOSE 80 443
CMD ["nginx", "-g", "daemon off;"]