Skip to content

Commit

Permalink
fix: add apt-get update to fix dockerfile (#13925)
Browse files Browse the repository at this point in the history
  • Loading branch information
tabVersion authored and st1page committed Dec 12, 2023
1 parent 7c77553 commit 783442d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ LABEL org.opencontainers.image.source https://github.com/risingwavelabs/risingwa
RUN apt-get update && apt-get -y install linux-tools-generic \
&& ln -s "$(find /usr/lib/linux-tools/*/perf | head -1)" /usr/local/bin/perf

RUN DEBIAN_FRONTEND=noninteractive apt-get -y install gdb libpam-krb5 krb5-user \
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install gdb libpam-krb5 krb5-user \
&& rm -rf /var/lib/{apt,dpkg,cache,log}/

RUN mkdir -p /risingwave/bin/connector-node && mkdir -p /risingwave/lib
Expand Down

0 comments on commit 783442d

Please sign in to comment.