Skip to content
This repository was archived by the owner on Oct 29, 2025. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ RUN scripts/replace-placeholder.sh http://NEXT_PUBLIC_WEBAPP_URL_PLACEHOLDER ${N

FROM node:18 as runner

RUN apt-get update \
&& apt-get install -y netcat-openbsd \
&& apt-get clean \

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The clean should not be required anymore, as all major debian based images have apt hooks that perform a clean automatically. Only the "rm -rf" is required nowadays.

&& rm -rf /var/lib/apt/lists/*

WORKDIR /calcom
COPY --from=builder-two /calcom ./
Expand Down