diff --git a/Dockerfile b/Dockerfile
index 60ae52f..f345b6a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -22,10 +22,13 @@ FROM node:18-alpine AS runner
# Set working directory inside the container
WORKDIR /app
+RUN mkdir -p public
+
# Copy only necessary files from builder
COPY --from=builder /app/package.json /app/package-lock.json ./
COPY --from=builder /app/.next ./.next
COPY --from=builder /app/public ./public
+COPY --from=builder /app/public ./public || true
COPY --from=builder /app/node_modules ./node_modules
# Expose port for Next.js
diff --git a/components/product-table.tsx b/components/product-table.tsx
index b8548b9..47ffcbd 100644
--- a/components/product-table.tsx
+++ b/components/product-table.tsx
@@ -52,7 +52,7 @@ const ProductTable = ({
-