Skip to content

Commit

Permalink
Merge branch 'release-0.2.45'
Browse files Browse the repository at this point in the history
  • Loading branch information
entrotech committed Feb 5, 2023
2 parents 3509255 + d9a4b15 commit c3ed382
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ RUN mkdir /app
WORKDIR /app
COPY /client/package.json .
COPY /client/package-lock.json .
RUN npm ci --legacy-peer-deps
RUN npm ci --legacy-peer-deps && find node_modules ! -user root | xargs chown root:root
COPY /client .

RUN npm run build
Expand All @@ -18,7 +18,7 @@ COPY --from=clientBuilder /app/build /client/build
COPY ./server/package.json ./
COPY ./server/package-lock.json ./

RUN npm ci
RUN npm ci && find node_modules ! -user root | xargs chown root:root

COPY ./server/app ./app
COPY ./server/middleware ./middleware
Expand Down
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tdm-calculator-client",
"version": "0.2.44",
"version": "0.2.45",
"private": true,
"proxy": "http://localhost:5001",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "root",
"version": "0.2.44",
"version": "0.2.45",
"private": true,
"scripts": {
"release-notes": "gren release --override",
Expand Down
2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tdm-calculator-api",
"version": "0.2.44",
"version": "0.2.45",
"description": "Traffic Data Management Calculator",
"repository": {
"type": "git",
Expand Down

0 comments on commit c3ed382

Please sign in to comment.