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 . .
|
||||
|
||||
#RUN npm run build
|
||||
RUN npm run generate
|
||||
# RUN ls -lah .output/public
|
||||
# RUN test -f .output/public/index.html
|
||||
RUN npm run build
|
||||
|
||||
# Gunakan NGINX untuk menyajikan SPA
|
||||
FROM nginx:1.29.0-alpine-slim
|
||||
# Dockerfile untuk server Nuxt 3
|
||||
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
|
||||
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||||
RUN npm install --production --legacy-peer-deps
|
||||
|
||||
EXPOSE 80
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
||||
EXPOSE 3000
|
||||
|
||||
CMD ["node", ".output/server/index.mjs"]
|
||||
|
||||
@ -3,7 +3,7 @@ services:
|
||||
build: .
|
||||
container_name: freekake-nuxt-container
|
||||
ports:
|
||||
- "3000:80"
|
||||
- "3000:3000"
|
||||
env_file:
|
||||
- .env
|
||||
environment:
|
||||
|
||||
@ -73,11 +73,5 @@ export default defineNuxtConfig({
|
||||
},
|
||||
|
||||
ssr: false,
|
||||
nitro: {
|
||||
prerender: {
|
||||
crawlLinks: false,
|
||||
routes: ["/"]
|
||||
}
|
||||
}
|
||||
|
||||
});
|
||||
@ -10,6 +10,7 @@ export default defineNuxtPlugin((nuxtApp) => {
|
||||
}
|
||||
},
|
||||
async onResponseError({ response, options }) {
|
||||
|
||||
const originalRequest = { ...options };
|
||||
|
||||
if (response.status === 401) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user