Skip to content

Commit

Permalink
Update Dockerfile and package.json dependencies
Browse files Browse the repository at this point in the history
This commit updates the Dockerfile to use a newer version of the frontend-builder. It also updates the package.json file to use the latest versions of various dependencies. The changes include both minor and patch updates. The use of caret (^) in the versioning ensures that we use the most recent major version. This should improve the overall performance and security of the application.
  • Loading branch information
skrashevich committed Nov 20, 2023
1 parent d0b09ba commit 0de6d4d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax = docker/dockerfile:1.4

FROM --platform=$BUILDPLATFORM oven/bun:1.0.11 AS frontend-builder
FROM --platform=$BUILDPLATFORM oven/bun:1.0.13 AS frontend-builder
ARG DEBIAN_FRONTEND=noninteractive
WORKDIR /build
RUN apt -y update && apt install -y --no-install-recommends curl bash unzip
Expand Down
32 changes: 16 additions & 16 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,38 +22,38 @@
},
"homepage": "https://github.com/skrashevich/double-take#readme",
"dependencies": {
"ace-builds": "1.31.1",
"ace-builds": "1.31.2",
"ace-code": "1.31.2",
"ace-linters": "0.13.3",
"axios": "0.27.2",
"axios": "^1.6.2",
"copy-to-clipboard": "3.3.3",
"dgram": "1.0.1",
"eslint-plugin-vuejs-accessibility": "2.2.0",
"luxon": "3.4.4",
"mitt": "3.0.1",
"primeflex": "2.0.0",
"primeicons": "6.0.1",
"primevue": "3.39.0",
"primeflex": "^2.0.0",
"primeicons": "^6.0.1",
"primevue": "^3.39.0",
"prismjs": "1.29.0",
"pulltorefreshjs": "0.1.22",
"socket.io-client": "4.7.2",
"v-lazy-image": "2.1.1",
"v-pagination-3": "0.1.7",
"vue": "3.3.8",
"vue-router": "4.2.5",
"vue": "^3.3.8",
"vue-router": "^4.2.5",
"vue3-ace-editor": "2.2.4"
},
"devDependencies": {
"@vitejs/plugin-vue": "4.5.0",
"@vue/compiler-sfc": "3.3.8",
"@vue/eslint-config-airbnb": "7.0.0",
"@vue/eslint-config-prettier": "7.1.0",
"eslint": "8.54.0",
"eslint-plugin-vue": "9.18.1",
"sass": "1.69.5",
"@vitejs/plugin-vue": "^4.5.0",
"@vue/compiler-sfc": "^3.3.8",
"@vue/eslint-config-airbnb": "^7.0.0",
"@vue/eslint-config-prettier": "^8.0.0",
"eslint": "^8.54.0",
"eslint-plugin-vue": "^9.18.1",
"sass": "^1.69.5",
"vite": "^5.0.0",
"vite-plugin-commonjs-externals": "0.1.3",
"vite-svg-loader": "5.1.0"
"vite-plugin-commonjs-externals": "^0.1.3",
"vite-svg-loader": "^5.1.0"
},
"eslintConfig": {
"root": true,
Expand Down

0 comments on commit 0de6d4d

Please sign in to comment.