diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index c4a934e..047b8c3 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -17,14 +17,9 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - - name: Build and test - uses: docker/build-push-action@v6 - with: - load: true - - name: Build and push uses: docker/build-push-action@v6 with: - platforms: linux/amd64,linux/arm64 + platforms: linux/amd64 push: true tags: git.cheetah.cat/smartpager/${{ github.event.repository.name }}:latest \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index c733de1..c46a128 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,9 +8,12 @@ RUN apk add chromium python3 g++ make py3-pip WORKDIR /usr/src/app +ENV CHROME_BIN="/usr/bin/chromium-browser"\ + PUPPETEER_SKIP_CHROMIUM_DOWNLOAD="true" COPY . . +RUN npm install puppeteer RUN npm install USER node diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..703a33b --- /dev/null +++ b/compose.yaml @@ -0,0 +1,11 @@ +services: + server: + build: + context: . + environment: + NODE_ENV: production + volumes: + - ./config.json:/usr/src/app/config.json + ports: + - 3000:3000 + - 3001:3001 diff --git a/index.js b/index.js index 994fa18..110805e 100644 --- a/index.js +++ b/index.js @@ -6,7 +6,8 @@ Object.assign(config.deliveryPresets, actualConfig.deliveryPresets) Object.assign(config.boskrypt, actualConfig.boskrypt) Object.assign(config.general, actualConfig.general) Object.assign(config.pagers, actualConfig.pagers) -Object.assign(config.connectors, actualConfig.connectors) +for (let key of Object.keys(defaultConfig.connectors)) + Object.assign(config.connectors[key], actualConfig.connectors[key]) const connection = null const types = require('./types') // also initializes the registries, if they havent been loaded @@ -187,9 +188,10 @@ appConfig.get('/config', async (req, res) => { const parsedConfig = defaultConfig Object.assign(parsedConfig.deliveryPresets, actualConfig.deliveryPresets) Object.assign(parsedConfig.boskrypt, actualConfig.boskrypt) + for (let key of Object.keys(parsedConfig.connectors)) + Object.assign(parsedConfig.connectors[key], actualConfig.connectors[key]) Object.assign(parsedConfig.general, actualConfig.general) Object.assign(parsedConfig.pagers, actualConfig.pagers) - Object.assign(parsedConfig.connectors, actualConfig.connectors) // parsedConfig.deliveryPresets = parsedConfig.deliveryPresets || { // 'example': { // "name": "Normal", diff --git a/types/connectors/eMessagePuppeteerConnector.js b/types/connectors/eMessagePuppeteerConnector.js index 07bd0da..558c5d7 100644 --- a/types/connectors/eMessagePuppeteerConnector.js +++ b/types/connectors/eMessagePuppeteerConnector.js @@ -39,7 +39,12 @@ class eMessagePuppeteerConnectorBase extends Connector { } let sendPromise = () => new Promise(async (res, rej) => { - const browser = await puppeteer.launch({ headless: true }) + const browser = await puppeteer.launch({ + headless: true, + executablePath: '/usr/bin/chromium', + executablePath: '/usr/bin/chromium-browser', + args: ['--no-sandbox', '--disable-dev-shm-usage'], + }) this.connectorRegistry.reportState(msg, UUID, 'puppettering') const page = await browser.newPage() await page.goto('https://ruf.emessage.de/')