Merge pull request #8671 from zmstone/0809-add-tzdata-package-to-alpine
chore: add tzdata to alpine docker image
This commit is contained in:
commit
4ca487af35
|
@ -20,6 +20,7 @@ File format:
|
|||
### Enhancements
|
||||
|
||||
- Improve error message for LwM2M plugin when object ID is not valid [#8654](https://github.com/emqx/emqx/pull/8654).
|
||||
- Add tzdata apk package to alpine docker image. [#8671](https://github.com/emqx/emqx/pull/8671)
|
||||
|
||||
## v4.3.19
|
||||
|
||||
|
|
|
@ -16,6 +16,7 @@ RUN apk add --no-cache \
|
|||
libc-dev \
|
||||
libstdc++ \
|
||||
bash \
|
||||
tzdata \
|
||||
jq
|
||||
|
||||
COPY . /emqx
|
||||
|
@ -48,7 +49,7 @@ COPY deploy/docker/docker-entrypoint.sh /usr/bin/
|
|||
COPY --from=builder /emqx/_build/$EMQX_NAME/rel/emqx /opt/emqx
|
||||
|
||||
RUN ln -s /opt/emqx/bin/* /usr/local/bin/
|
||||
RUN apk add --no-cache curl ncurses-libs openssl sudo libstdc++ bash
|
||||
RUN apk add --no-cache curl ncurses-libs openssl sudo libstdc++ bash tzdata
|
||||
|
||||
WORKDIR /opt/emqx
|
||||
|
||||
|
|
Loading…
Reference in New Issue