From 878107623ef6e94a9ec621476bcdce31db03041f Mon Sep 17 00:00:00 2001 From: Danny Bessems Date: Mon, 10 Jul 2023 21:11:00 +0200 Subject: [PATCH] fix: Remove redundant packges --- Dockerfile | 4 +++- charts/json-server/Chart.yaml | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 969dcf9..5aeecbb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,8 @@ FROM node:latest -RUN npm install -g json-server +RUN npm install -g --no-optional --omit=dev \ + json-server && \ + npm cache clean --force COPY init/entrypoint.sh /opt/entrypoint.sh diff --git a/charts/json-server/Chart.yaml b/charts/json-server/Chart.yaml index 094ab82..5e86986 100644 --- a/charts/json-server/Chart.yaml +++ b/charts/json-server/Chart.yaml @@ -6,10 +6,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: v0.5.2 +version: v0.5.3 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "v0.5.2" +appVersion: "v0.5.3"