Try fix deploy error

This commit is contained in:
mrcanelas
2025-02-05 17:45:07 -03:00
parent ea82d09b52
commit 4e0aeeec7b
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ COPY --from=builder /app/dist ./dist
COPY --from=builder /app/configure/public ./public
# Exposição da porta
EXPOSE 7000
EXPOSE 1337
# Comando para iniciar o servidor
CMD ["node", "addon/server.js"]
+1 -1
View File
@@ -1,6 +1,6 @@
// require serverless version
const addon = require('./index.js')
const PORT = process.env.PORT || 7000
const PORT = process.env.PORT
// create local server
addon.listen(PORT, function () {
+1 -1
View File
@@ -1,4 +1,4 @@
{
"projectName": "tmdb-addon",
"lastCommit": "d4a233f"
"lastCommit": "ea82d09"
}