Skip to content

Commit 4461915

Browse files
committed
fix(docker): workaround libc-bin
1 parent 800533e commit 4461915

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ ADD docker/open-sans.tar.gz /usr/share/fonts
2323

2424
ENV DEBIAN_FRONTEND=noninteractive
2525

26-
RUN apt-get update && \
26+
RUN rm /var/lib/dpkg/info/libc-bin.* && \
27+
apt-get clean && \
28+
apt-get update && \
2729
apt-get install -y graphviz -o APT::Install-Suggests=0 -o APT::Install-Recommends=0 && \
2830
apt-get clean && \
2931
useradd -ms /bin/bash java && \
@@ -42,4 +44,4 @@ WORKDIR /
4244
ENV SCHEMASPY_DRIVERS=/drivers
4345
ENV SCHEMASPY_OUTPUT=/output
4446

45-
ENTRYPOINT ["/usr/local/bin/schemaspy"]
47+
ENTRYPOINT ["/usr/local/bin/schemaspy"]

0 commit comments

Comments
 (0)