Skip to content

Commit 9e8134a

Browse files
authored
software context update
software context update
2 parents b12f0f9 + 0ffeaa8 commit 9e8134a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+2124
-4424
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# build web files
2-
FROM node:20-alpine AS webapp
2+
FROM node:24-alpine AS webapp
33

44
WORKDIR /build
55
COPY webapp/package*.json .
@@ -10,7 +10,7 @@ COPY webapp/public public
1010
RUN npm run build
1111

1212
# run python app
13-
FROM python:3.12-alpine
13+
FROM python:3.13-alpine
1414

1515
ENV GUI_PORT_LISTEN 8080
1616
ENV PROXY_PORT_LISTEN 8081

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
aiohttp~=3.9
2-
multidict~=6.0
3-
asyncio~=3.4
4-
brotli~=1.1
1+
aiohttp~=3.13
2+
multidict~=6.7
3+
asyncio~=4.0
4+
brotli~=1.2

webapp/.eslintrc.cjs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,6 @@ module.exports = {
99
'@vue/eslint-config-typescript',
1010
'@vue/eslint-config-prettier/skip-formatting'
1111
],
12-
overrides: [
13-
{
14-
files: [
15-
'cypress/e2e/**/*.{cy,spec}.{js,ts,jsx,tsx}',
16-
'cypress/support/**/*.{js,ts,jsx,tsx}'
17-
],
18-
'extends': [
19-
'plugin:cypress/recommended'
20-
]
21-
}
22-
],
2312
parserOptions: {
2413
ecmaVersion: 'latest'
2514
}

webapp/Dockerfile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
# ONLY FOR DEVELOPMENT
22

3-
FROM node:20-alpine
3+
FROM node:24-alpine
44

55
WORKDIR /app
6-
VOLUME /app/node_modules
7-
COPY package*.json ./
8-
RUN npm i -D
96

107
EXPOSE 5173
118

12-
CMD [ "npm", "run", "dev", "--", "--host", "0.0.0.0", "--port", "5173" ]
9+
CMD sh -c "npm i -D && npm run dev -- --host 0.0.0.0 --port 5173"

webapp/Dockerfile-build

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# BUILD - ONLY FOR DEVELOPMENT
2+
3+
FROM node:24-alpine
4+
5+
WORKDIR /app
6+
7+
EXPOSE 5173
8+
9+
CMD sh -c "npm i -D && npm run build"

webapp/cypress.config.ts

Lines changed: 0 additions & 8 deletions
This file was deleted.

webapp/cypress/e2e/example.cy.ts

Lines changed: 0 additions & 8 deletions
This file was deleted.

webapp/cypress/e2e/tsconfig.json

Lines changed: 0 additions & 10 deletions
This file was deleted.

webapp/cypress/fixtures/example.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

webapp/cypress/support/commands.ts

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)