node.js
This commit is contained in:
parent
be5361349e
commit
e377cc4783
22
Dockerfile
22
Dockerfile
@ -8,20 +8,18 @@ RUN npm install --legacy-peer-deps
|
|||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
#RUN npm run build
|
RUN npm run build
|
||||||
RUN npm run generate
|
|
||||||
# RUN ls -lah .output/public
|
|
||||||
# RUN test -f .output/public/index.html
|
|
||||||
|
|
||||||
# Gunakan NGINX untuk menyajikan SPA
|
# Dockerfile untuk server Nuxt 3
|
||||||
FROM nginx:1.29.0-alpine-slim
|
FROM node:24-alpine
|
||||||
|
|
||||||
RUN rm -rf /usr/share/nginx/html/*
|
WORKDIR /app
|
||||||
|
|
||||||
RUN rm /etc/nginx/conf.d/default.conf
|
COPY --from=builder /app/.output ./.output
|
||||||
|
COPY --from=builder /app/package*.json ./
|
||||||
|
|
||||||
COPY --from=builder /app/dist /usr/share/nginx/html
|
RUN npm install --production --legacy-peer-deps
|
||||||
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
||||||
|
|
||||||
EXPOSE 80
|
EXPOSE 3000
|
||||||
CMD ["nginx", "-g", "daemon off;"]
|
|
||||||
|
CMD ["node", ".output/server/index.mjs"]
|
||||||
|
|||||||
@ -3,7 +3,7 @@ services:
|
|||||||
build: .
|
build: .
|
||||||
container_name: freekake-nuxt-container
|
container_name: freekake-nuxt-container
|
||||||
ports:
|
ports:
|
||||||
- "3000:80"
|
- "3000:3000"
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
@ -73,11 +73,5 @@ export default defineNuxtConfig({
|
|||||||
},
|
},
|
||||||
|
|
||||||
ssr: false,
|
ssr: false,
|
||||||
nitro: {
|
|
||||||
prerender: {
|
|
||||||
crawlLinks: false,
|
|
||||||
routes: ["/"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
});
|
||||||
@ -10,6 +10,7 @@ export default defineNuxtPlugin((nuxtApp) => {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
async onResponseError({ response, options }) {
|
async onResponseError({ response, options }) {
|
||||||
|
|
||||||
const originalRequest = { ...options };
|
const originalRequest = { ...options };
|
||||||
|
|
||||||
if (response.status === 401) {
|
if (response.status === 401) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user