Skip to content
Merged
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,5 +1,5 @@
# build web files
FROM node:20-alpine AS webapp
FROM node:24-alpine AS webapp

WORKDIR /build
COPY webapp/package*.json .
Expand All @@ -10,7 +10,7 @@ COPY webapp/public public
RUN npm run build

# run python app
FROM python:3.12-alpine
FROM python:3.13-alpine

ENV GUI_PORT_LISTEN 8080
ENV PROXY_PORT_LISTEN 8081
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
aiohttp~=3.9
multidict~=6.0
asyncio~=3.4
brotli~=1.1
aiohttp~=3.13
multidict~=6.7
asyncio~=4.0
brotli~=1.2
11 changes: 0 additions & 11 deletions webapp/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,6 @@ module.exports = {
'@vue/eslint-config-typescript',
'@vue/eslint-config-prettier/skip-formatting'
],
overrides: [
{
files: [
'cypress/e2e/**/*.{cy,spec}.{js,ts,jsx,tsx}',
'cypress/support/**/*.{js,ts,jsx,tsx}'
],
'extends': [
'plugin:cypress/recommended'
]
}
],
parserOptions: {
ecmaVersion: 'latest'
}
Expand Down
7 changes: 2 additions & 5 deletions webapp/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
# ONLY FOR DEVELOPMENT

FROM node:20-alpine
FROM node:24-alpine

WORKDIR /app
VOLUME /app/node_modules
COPY package*.json ./
RUN npm i -D

EXPOSE 5173

CMD [ "npm", "run", "dev", "--", "--host", "0.0.0.0", "--port", "5173" ]
CMD sh -c "npm i -D && npm run dev -- --host 0.0.0.0 --port 5173"
9 changes: 9 additions & 0 deletions webapp/Dockerfile-build
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# BUILD - ONLY FOR DEVELOPMENT

FROM node:24-alpine

WORKDIR /app

EXPOSE 5173

CMD sh -c "npm i -D && npm run build"
8 changes: 0 additions & 8 deletions webapp/cypress.config.ts

This file was deleted.

8 changes: 0 additions & 8 deletions webapp/cypress/e2e/example.cy.ts

This file was deleted.

10 changes: 0 additions & 10 deletions webapp/cypress/e2e/tsconfig.json

This file was deleted.

5 changes: 0 additions & 5 deletions webapp/cypress/fixtures/example.json

This file was deleted.

39 changes: 0 additions & 39 deletions webapp/cypress/support/commands.ts

This file was deleted.

20 changes: 0 additions & 20 deletions webapp/cypress/support/e2e.ts

This file was deleted.

Loading