wawa
All checks were successful
Build Full Stack / release-image (push) Successful in 3m25s

This commit is contained in:
2024-12-22 01:54:37 +01:00
parent 7057f0e04a
commit a0dde77659
2 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@ RUN yarn build
FROM base AS runner
WORKDIR /app
ENV NODE_ENV production
ENV NODE_ENV=production
# Uncomment the following line in case you want to disable telemetry during runtime.
# ENV NEXT_TELEMETRY_DISABLED 1
@ -58,8 +58,8 @@ USER nextjs
EXPOSE 3000
ENV PORT 3000
ENV PORT=3000
# set hostname to localhost
ENV HOSTNAME "0.0.0.0"
ENV HOSTNAME="0.0.0.0"
CMD ["node", "server.js"]

View File

@ -1,7 +1,7 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: 'standalone'
};
export default nextConfig;