Commit a5aadf2 1 parent 009a38e commit a5aadf2 Copy full SHA for a5aadf2
File tree 2 files changed +9
-5
lines changed
2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,10 @@ ENV TINI_VERSION v0.18.0
17
17
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
18
18
RUN chmod +x /tini
19
19
20
- RUN microdnf update -y && rm -rf /var/cache/yum
21
- RUN microdnf install wget procps python iproute net-tools -y && microdnf clean all
20
+ RUN set -eux; \
21
+ apt-get update; \
22
+ apt-get install -y --no-install-recommends wget; \
23
+ rm -rf /var/lib/apt/lists/*
22
24
23
25
# backwards compat with upstream ENTRYPOINT
24
26
COPY dse-68/docker-entrypoint.sh /usr/local/bin/
Original file line number Diff line number Diff line change 1
- FROM datastax/dse-server:6.8.0-ubi7-1
1
+ FROM datastax/dse-server:6.8.0
2
2
3
3
USER root
4
- RUN microdnf update && rm -rf /var/cache/yum && \
5
- microdnf install libjemalloc1 procps python iproute2 numactl iproute2 net-tools && microdnf clean all
4
+ RUN set -eux; \
5
+ apt-get update; \
6
+ apt-get install -y --no-install-recommends wget; \
7
+ rm -rf /var/lib/apt/lists/*
6
8
7
9
ENV DS_LICENSE=accept
8
10
ENV PATH $DSE_HOME/bin:$PATH
You can’t perform that action at this time.
0 commit comments