Subham9126 commited on
Commit
762d7e2
Β·
verified Β·
1 Parent(s): 8208b74

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -8,14 +8,14 @@ RUN apt-get update && apt-get install -y \
8
  curl nginx supervisor ca-certificates \
9
  && rm -rf /var/lib/apt/lists/*
10
 
11
- # ── 2. Redpanda (broker + rpk + pandaproxy + schema-registry) ───────────────
12
  RUN curl -1sLf 'https://dl.redpanda.com/nzc4ZYQK3WRGd9sy/redpanda/cfg/setup/bash.deb.sh' \
13
  | bash \
14
  && apt-get install -y redpanda \
15
  && rm -rf /var/lib/apt/lists/*
16
 
17
- # ── 3. Console binary β€” pulled from official image, no wget needed ───────────
18
- COPY --from=console-src /app/redpanda-console /usr/local/bin/redpanda-console
19
  RUN chmod +x /usr/local/bin/redpanda-console
20
 
21
  # ── 4. User matching HF Spaces runtime UID 1000 ──────────────────────────────
 
8
  curl nginx supervisor ca-certificates \
9
  && rm -rf /var/lib/apt/lists/*
10
 
11
+ # ── 2. Redpanda ──────────────────────────────────────────────────────────────
12
  RUN curl -1sLf 'https://dl.redpanda.com/nzc4ZYQK3WRGd9sy/redpanda/cfg/setup/bash.deb.sh' \
13
  | bash \
14
  && apt-get install -y redpanda \
15
  && rm -rf /var/lib/apt/lists/*
16
 
17
+ # ── 3. Console binary β€” correct path is /app/console not /app/redpanda-console
18
+ COPY --from=console-src /app/console /usr/local/bin/redpanda-console
19
  RUN chmod +x /usr/local/bin/redpanda-console
20
 
21
  # ── 4. User matching HF Spaces runtime UID 1000 ──────────────────────────────