fix(p2wd-esm): Bumping to v2.2.7

This commit is contained in:
Chris Troutner
2022-10-09 08:16:07 -07:00
parent 169e0ad3d2
commit c8cc3adbc5
4 changed files with 88 additions and 37 deletions
+4 -1
View File
@@ -72,7 +72,10 @@ RUN npm run docs
#EXPOSE 5010
# Start the application.
#COPY start-production.sh start-production.sh
CMD ["./start-production.sh"]
#CMD ["npm", "start"]
# Used for debugging
#COPY dummy-app.js dummy-app.js
#CMD ["node", "dummy-app.js"]
+4
View File
@@ -0,0 +1,4 @@
setInterval(function () {
const now = new Date()
console.log(`timestamp: ${now.toLocaleString()}`)
}, 5000)