31 lines
602 B
Docker
31 lines
602 B
Docker
# Dockerfile untuk SPA Nuxt 3
|
|
FROM node:24-alpine AS builder
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json ./
|
|
RUN npm install --legacy-peer-deps
|
|
|
|
COPY . .
|
|
|
|
RUN npm run build
|
|
|
|
# Dockerfile untuk server Nuxt 3
|
|
FROM nginx:1.29-alpine
|
|
|
|
RUN rm -rf /var/www/html/* && \
|
|
rm -f /etc/nginx/conf.d/default.conf
|
|
# COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY nginx.conf /etc/nginx/conf.d/
|
|
|
|
COPY --from=builder /app/.output/public /var/www/html
|
|
|
|
RUN chown -R nginx:nginx /var/www/html && \
|
|
chmod -R 755 /var/www/html
|
|
|
|
RUN ln -s /var/www/html /usr/share/nginx/html
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|