From 7422d3039bdce7baf7615da7fe2362765d59e868 Mon Sep 17 00:00:00 2001 From: TheBeastLT Date: Fri, 1 Apr 2022 14:21:54 +0200 Subject: [PATCH] fix catalogs build command --- .github/workflows/deploy_catalogs.yml | 2 +- catalogs/serverless.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/deploy_catalogs.yml b/.github/workflows/deploy_catalogs.yml index c064f1c..a96d20b 100644 --- a/.github/workflows/deploy_catalogs.yml +++ b/.github/workflows/deploy_catalogs.yml @@ -15,7 +15,7 @@ jobs: - name: Create Docker image run: | - docker build -t torrentio-catalogs:latest ./catalogs/ + docker build -t torrentio-catalogs:latest . -f ./catalogs/Dockerfile docker save torrentio-catalogs:latest > torrentio_catalogs_latest.tar - name: Upload Docker image diff --git a/catalogs/serverless.js b/catalogs/serverless.js index 8262f1a..ff51bc3 100644 --- a/catalogs/serverless.js +++ b/catalogs/serverless.js @@ -3,7 +3,6 @@ const addonInterface = require('./addon'); const qs = require('querystring') const { parseConfiguration } = require('../addon/lib/configuration'); const { createManifest } = require('./lib/manifest'); -const landingTemplate = require('./lib/landingTemplate'); const router = getRouter(addonInterface);