Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=linux/amd64 node:16.13.0-alpine
FROM --platform=linux/amd64 node:18-alpine

ARG APP_BASE_URL

Expand All @@ -13,7 +13,7 @@ COPY . .

RUN npm cache clean --force

RUN npm ci --legacy-peer-deps
RUN npm ci

RUN npm run build

Expand Down
1 change: 0 additions & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import ace from 'atlassian-connect-express';
import hbs from 'express-hbs';
import http from 'http';
import path from 'path';
import * as sqlite3 from 'sqlite3';
import * as pg from 'pg';
import helmet from 'helmet';
import nocache from 'nocache';
Expand Down
Loading