File tree Expand file tree Collapse file tree 1 file changed +26
-20
lines changed Expand file tree Collapse file tree 1 file changed +26
-20
lines changed Original file line number Diff line number Diff line change @@ -111,20 +111,23 @@ COPY ./build/supervisord.conf /etc/
111
111
USER root
112
112
113
113
# install dotnet and supervisor
114
- RUN apt-get update -y && \
115
- apt-get install -y --no-install-recommends \
116
- wget \
117
- apt-transport-https \
114
+ RUN apt-get update \
115
+ && apt-get install -y --no-install-recommends \
118
116
supervisor \
117
+ wget \
119
118
dos2unix \
119
+ ca-certificates \
120
+ \
121
+ # .NET dependencies
120
122
libc6 \
121
- libgcc1 \
122
- libgssapi-krb5-2 \
123
- libicu66 \
124
- libssl1.1 \
123
+ libgcc-s1 \
124
+ libicu74 \
125
+ libssl3t64 \
125
126
libstdc++6 \
126
- zlib1g && \
127
- dos2unix /app/docker-entrypoint.sh
127
+ tzdata \
128
+ tzdata-legacy \
129
+ && rm -rf /var/lib/apt/lists/* \
130
+ && dos2unix /app/docker-entrypoint.sh
128
131
129
132
ENV discovery.type=single-node \
130
133
xpack.security.enabled=false \
@@ -169,20 +172,23 @@ COPY ./build/supervisord.conf /etc/
169
172
USER root
170
173
171
174
# install dotnet and supervisor
172
- RUN apt-get update -y && \
173
- apt-get install -y --no-install-recommends \
174
- wget \
175
- apt-transport-https \
175
+ RUN apt-get update \
176
+ && apt-get install -y --no-install-recommends \
176
177
supervisor \
178
+ wget \
177
179
dos2unix \
180
+ ca-certificates \
181
+ \
182
+ # .NET dependencies
178
183
libc6 \
179
- libgcc1 \
180
- libgssapi-krb5-2 \
181
- libicu66 \
182
- libssl1.1 \
184
+ libgcc-s1 \
185
+ libicu74 \
186
+ libssl3t64 \
183
187
libstdc++6 \
184
- zlib1g && \
185
- dos2unix /app/docker-entrypoint.sh
188
+ tzdata \
189
+ tzdata-legacy \
190
+ && rm -rf /var/lib/apt/lists/* \
191
+ && dos2unix /app/docker-entrypoint.sh
186
192
187
193
ENV discovery.type=single-node \
188
194
xpack.security.enabled=false \
You can’t perform that action at this time.
0 commit comments