-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add multiple changes to docs and build system.
- Update Docker README with build and push instructions - Remove Travis CI configuration and add CHANGELOG.md - Update Docker workflow to use specific action versions and add artifact attestation step - Enhance Docker CI workflow to inject version and commit ID into index.ejs, manage tags, and streamline versioning process - Refactor Dockerfile to copy application files directly and remove unnecessary git clone step
- Loading branch information
1 parent
ad26d1e
commit 1e33fd2
Showing
5 changed files
with
126 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [v0.7.2] - 2024-12-29 | ||
### Added | ||
- Add CHANGELOG.md. | ||
- Add version and git commit id as HTML tag during docker build process. | ||
|
||
### Changed | ||
- Upate several dependencies. | ||
- Update documentation. | ||
|
||
|
||
## [v0.7.1] - 2024-05-09 | ||
### Added | ||
- Add github action and switch to version scheme `va.b.c`. | ||
|
||
### Changed | ||
- Upate several dependencies. | ||
|
||
|
||
## [0.7.0] - 2023-11-18 | ||
### Added | ||
- Update encryption to aes-256-cbc. | ||
- Remove tracking code. | ||
- Add license file. | ||
- Disable Header "X-Powered-By: Express" for security reason. | ||
- Better parameter validation. | ||
|
||
### Changed | ||
- Upate several dependencies. | ||
|
||
|
||
## [0.6.1] - 2021-03-30 | ||
### Changed | ||
- Fix copying issue with mobile browsers. | ||
|
||
## [0.6.0] - 2021-03-30 | ||
### Added | ||
- Add copy button. | ||
|
||
### Changed | ||
- Updated jquery version. | ||
|
||
|
||
## [0.5.0] - 2021-01-25 | ||
### Changed | ||
- Fix loading database error during migration. | ||
- Solve file cincurrency issue. | ||
|
||
|
||
## [0.4.0] - 2020-11-19 | ||
### Added | ||
- Replace chaos with NeDB, optimize data processing, add migration and update layout. | ||
|
||
## [0.3.0] - 2020-02-03 | ||
### Added | ||
- Initial version. | ||
|
||
|
||
|
||
[Unreleased]: https://github.com/wemove/read2burn/compare/v0.7.2...HEAD | ||
[v0.7.2]: https://github.com/wemove/read2burn/compare/v0.7.1...v0.7.2 | ||
[v0.7.1]: https://github.com/wemove/read2burn/compare/0.7.0...v0.7.1 | ||
[0.7.0]: https://github.com/wemove/read2burn/compare/0.6.1...0.7.0 | ||
[0.6.1]: https://github.com/wemove/read2burn/compare/0.6.0...0.6.1 | ||
[0.6.0]: https://github.com/wemove/read2burn/compare/0.5.0...0.6.0 | ||
[0.5.0]: https://github.com/wemove/read2burn/compare/0.4.0...0.5.0 | ||
[0.4.0]: https://github.com/wemove/read2burn/compare/0.3.0...0.4.0 | ||
[0.3.0]: https://github.com/wemove/read2burn/releases/tag/0.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ ENV READ2BURN_HOME="/app" | |
|
||
WORKDIR ${READ2BURN_HOME} | ||
|
||
COPY . . | ||
|
||
# Run a command inside the image | ||
# If you are building your code for production | ||
# RUN npm ci --only=production | ||
|
@@ -15,8 +17,6 @@ WORKDIR ${READ2BURN_HOME} | |
RUN apk update \ | ||
&& apk upgrade \ | ||
&& apk add --no-cache tzdata \ | ||
&& apk add git \ | ||
&& git clone --single-branch --depth 1 https://github.com/wemove/read2burn.git ${READ2BURN_HOME} \ | ||
&& npm ci --only=production \ | ||
&& rm -rf ${READ2BURN_HOME}/docker | ||
|
||
|
@@ -25,9 +25,6 @@ RUN apk update \ | |
|
||
FROM node:lts-alpine | ||
|
||
# Your contact info | ||
MAINTAINER J Mueller <[email protected]> | ||
|
||
ENV READ2BURN_HOME="/app" | ||
|
||
WORKDIR ${READ2BURN_HOME} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters