Docker update
This commit is contained in:
20
DockerFile
20
DockerFile
@ -27,10 +27,24 @@ WORKDIR /app
|
||||
# Set to production
|
||||
ENV NODE_ENV=production
|
||||
|
||||
# Copy necessary files
|
||||
# Create nextjs user and group
|
||||
RUN addgroup --system --gid 1001 nodejs && \
|
||||
adduser --system --uid 1001 nextjs
|
||||
|
||||
# Copy necessary files from builder
|
||||
COPY --from=builder /app/public ./public
|
||||
COPY --from=builder /app/.next/standalone ./
|
||||
COPY --from=builder /app/.next/static ./.next/static
|
||||
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
|
||||
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
|
||||
|
||||
# Create cache directory and set permissions
|
||||
RUN mkdir -p .next/cache/images && \
|
||||
chown -R nextjs:nodejs .next
|
||||
|
||||
# Ensure the entire app directory has proper permissions
|
||||
RUN chown -R nextjs:nodejs /app
|
||||
|
||||
# Switch to non-root user
|
||||
USER nextjs
|
||||
|
||||
# Expose port
|
||||
EXPOSE 3000
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
import type { NextConfig } from "next";
|
||||
|
||||
const nextConfig: NextConfig = {
|
||||
// Required for Docker standalone build
|
||||
output: 'standalone',
|
||||
|
||||
/* config options here */
|
||||
images: {
|
||||
@ -19,12 +21,18 @@ const nextConfig: NextConfig = {
|
||||
},
|
||||
{
|
||||
protocol: 'https',
|
||||
hostname: 'yourproductiondomain.com', // Replace with your production domain
|
||||
hostname: 'cmcbackend.rootwire.com',
|
||||
pathname: '/api/files/images/**',
|
||||
},
|
||||
{
|
||||
protocol: 'https',
|
||||
hostname: 'maincmc.rootwire.com',
|
||||
pathname: '/**',
|
||||
}
|
||||
],
|
||||
|
||||
// Minimize cache issues in production
|
||||
minimumCacheTTL: 60,
|
||||
},
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
export default nextConfig;
|
||||
Reference in New Issue
Block a user