refactor: remove unnecessary package installation from Dockerfile

This commit is contained in:
암냥 2025-12-08 18:02:55 +09:00
commit 42794c30d8
No known key found for this signature in database

View file

@ -24,7 +24,6 @@ WORKDIR /app
ENV NODE_ENV=production
RUN apt-get update && apt-get install -y --no-install-recommends shadow && rm -rf /var/lib/apt/lists/*
RUN groupadd -g 1001 nodejs
RUN useradd -m -u 1001 -g nodejs -s /sbin/nologin nextjs