2018-10-03 16:38:18 +03:00
|
|
|
#
|
2023-01-31 10:43:56 +02:00
|
|
|
# Copyright © 2016-2023 The Thingsboard Authors
|
2018-10-03 16:38:18 +03:00
|
|
|
#
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
|
#
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
#
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
|
# limitations under the License.
|
|
|
|
|
#
|
|
|
|
|
|
2023-10-24 13:56:15 +02:00
|
|
|
FROM thingsboard/openjdk17:bookworm-slim
|
2021-09-13 14:39:44 +03:00
|
|
|
|
2018-10-03 16:38:18 +03:00
|
|
|
COPY start-tb-node.sh ${pkg.name}.deb /tmp/
|
|
|
|
|
|
2023-10-24 13:57:22 +02:00
|
|
|
RUN chmod a+x /tmp/*.sh \
|
2022-03-02 16:27:04 +01:00
|
|
|
&& mv /tmp/start-tb-node.sh /usr/bin && \
|
|
|
|
|
(yes | dpkg -i /tmp/${pkg.name}.deb) && \
|
|
|
|
|
rm /tmp/${pkg.name}.deb && \
|
|
|
|
|
(systemctl --no-reload disable --now ${pkg.name}.service > /dev/null 2>&1 || :) && \
|
|
|
|
|
chown -R ${pkg.user}:${pkg.user} /tmp && \
|
|
|
|
|
chmod 555 ${pkg.installFolder}/bin/${pkg.name}.jar
|
2020-04-30 09:37:08 +03:00
|
|
|
|
2020-03-10 16:52:50 +02:00
|
|
|
USER ${pkg.user}
|
|
|
|
|
|
2018-10-03 16:38:18 +03:00
|
|
|
CMD ["start-tb-node.sh"]
|