Compare commits

...

3 Commits

Author SHA1 Message Date
Nicolai Ort 4e4435010f
🚀Bumped version to v0.14.5
continuous-integration/drone/push Build is passing Details
2023-04-15 18:16:09 +02:00
Nicolai Ort de9af5a909
Entrypoint fix 2023-04-15 18:15:57 +02:00
Nicolai Ort ac631f0af4
Fixed copy 2023-04-15 18:13:58 +02:00
3 changed files with 13 additions and 3 deletions

View File

@ -2,9 +2,17 @@
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
#### [v0.14.5](https://git.odit.services/lfk/backend/compare/v0.14.4...v0.14.5)
- Entrypoint fix [`de9af5a`](https://git.odit.services/lfk/backend/commit/de9af5a90907dcfc9bfb1d5a56420eed8bb59922)
- Fixed copy [`ac631f0`](https://git.odit.services/lfk/backend/commit/ac631f0af467446552478873b7b4802a9310f865)
#### [v0.14.4](https://git.odit.services/lfk/backend/compare/v0.14.3...v0.14.4)
> 15 April 2023
- Switched ci over to pnpm + cache [`6275aaa`](https://git.odit.services/lfk/backend/commit/6275aaa326f1c02c8dd42aa31608978408c44ab7)
- 🚀Bumped version to v0.14.4 [`6bbdd5b`](https://git.odit.services/lfk/backend/commit/6bbdd5bb04a1c38e4b3a150db24b76e9c96490dd)
- Back to ean13 based codes [`a8fc755`](https://git.odit.services/lfk/backend/commit/a8fc7558408b97da4b2c469ae5e73ab502b4fda0)
- install prod in first step [`d027439`](https://git.odit.services/lfk/backend/commit/d02743984dfea8057be3081bd3a32a8f67e610aa)
- Switched dockerfile to pnpm 8 with cache [`93d43b7`](https://git.odit.services/lfk/backend/commit/93d43b76843d7cb411f37fd2066c6a5364c05415)

View File

@ -15,6 +15,8 @@ RUN pnpm run build \
# final image
FROM registry.odit.services/hub/library/node:19.5.0-alpine3.16 as final
COPY --from=build /app/dist dist
WORKDIR /app
COPY --from=build /app/package.json /app/package.json
COPY --from=build /app/dist /app/dist
COPY --from=build /app/node_modules /app/node_modules
ENTRYPOINT ["node", "dist/app.js"]
ENTRYPOINT ["node", "/app/dist/app.js"]

View File

@ -1,6 +1,6 @@
{
"name": "@odit/lfk-backend",
"version": "0.14.4",
"version": "0.14.5",
"main": "src/app.ts",
"repository": "https://git.odit.services/lfk/backend",
"engines": {