Simplify Dockerfile by removing libc6-compat

Removed unnecessary installation of libc6-compat.
This commit is contained in:
2026-01-26 04:41:26 +00:00
committed by GitHub
parent 02c05e7c8a
commit e0ac4dae46

View File

@@ -1,12 +1,7 @@
FROM node
RUN apk add --no-cache libc6-compat
WORKDIR /app
RUN npm i
COPY entrypoint.sh /app/
RUN chmod +x /app/entrypoint.sh
ENTRYPOINT ["/app/entrypoint.sh"]
CMD ["node", "server.js"]