Move version and changelog to files (#1109)

## Description:

Move these assets to files so that they can be replaced with generated
assets in the future.

## Please complete the following:

- [x] I have added screenshots for all UI updates
- [x] I process any text displayed to the user through translateText()
and I've added it to the en.json file
- [x] I have added relevant tests to the test directory
- [x] I confirm I have thoroughly tested these changes and take full
responsibility for any bugs introduced
- [x] I understand that submitting code with bugs that could have been
caught through manual testing blocks releases and new features for all
contributors

---------

Co-authored-by: Scott Anderson <662325+scottanderson@users.noreply.github.com>
This commit is contained in:
Scott Anderson
2025-06-10 13:07:26 -04:00
committed by GitHub
parent a0d17ed85e
commit 790b052ca2
8 changed files with 187 additions and 28 deletions
+3 -3
View File
@@ -24,7 +24,7 @@ FROM base
COPY --from=dependencies / /
ARG GIT_COMMIT=unknown
ENV GIT_COMMIT=$GIT_COMMIT
ENV GIT_COMMIT="$GIT_COMMIT"
# Set the working directory in the container
WORKDIR /usr/src/app
@@ -35,7 +35,7 @@ COPY package*.json ./
# Install dependencies while bypassing Husky hooks
ENV HUSKY=0
ENV NPM_CONFIG_IGNORE_SCRIPTS=1
RUN mkdir -p .git && npm install
RUN mkdir -p .git && npm ci
# Copy the rest of the application code
COPY . .
@@ -45,7 +45,7 @@ RUN npm run build-prod
# So we can see which commit was used to build the container
# https://openfront.io/commit.txt
RUN echo $GIT_COMMIT > static/commit.txt
RUN echo "$GIT_COMMIT" > static/commit.txt
# Copy Nginx configuration and ensure it's used instead of the default
COPY nginx.conf /etc/nginx/conf.d/default.conf