Dockerfile 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #
  2. # Copyright © 2016-2023 The Thingsboard Authors
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. FROM thingsboard/node:16.17.0-bullseye-slim
  17. ENV NODE_ENV production
  18. ENV DOCKER_MODE true
  19. COPY start-js-executor.sh /tmp/
  20. WORKDIR ${pkg.installFolder}
  21. COPY ["src/package.json", "src/yarn.lock", "./"]
  22. COPY package/linux/conf ./conf
  23. COPY package/linux/conf ./config
  24. COPY src/api ./api
  25. COPY src/queue ./queue
  26. COPY src/config ./config
  27. COPY src/server.js ./
  28. RUN chmod a+x /tmp/*.sh \
  29. && mv /tmp/start-js-executor.sh /usr/bin \
  30. && chown -R node:node ${pkg.installFolder} \
  31. && yarn install --production && yarn cache clean --all
  32. USER node
  33. CMD ["start-js-executor.sh"]