Compare commits

...

4 Commits

Author SHA1 Message Date
7a8e484632
chore: 1.2.0
Some checks failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/tag/release Pipeline was successful
2024-12-18 18:00:06 +01:00
1f771fb73f
feat: NODE_ENV=production 2024-12-18 17:59:40 +01:00
34c8f03571
refactor: dockerfile 2024-12-18 17:59:30 +01:00
dfac4c0fe9
chore(deps): bun:1.1.40 2024-12-18 17:59:24 +01:00
3 changed files with 4 additions and 17 deletions

View File

@ -9,4 +9,5 @@ FRONTEND_URL="https://run.lauf-fuer-kaya.de"
DOCUMENT_SERVER_URL="https://documents.run.lauf-fuer-kaya.de" DOCUMENT_SERVER_URL="https://documents.run.lauf-fuer-kaya.de"
AUTHKEY="" AUTHKEY=""
EVENT_DATE="23.05.2025" EVENT_DATE="23.05.2025"
EVENT_NAME="Lauf für Kaya! 2025" EVENT_NAME="Lauf für Kaya! 2025"
NODE_ENV=production

View File

@ -1,21 +1,7 @@
FROM oven/bun:1.1.36-slim FROM oven/bun:1.1.40-slim
# FROM oven/bun:1.0.25
WORKDIR /app WORKDIR /app
# Copy package files
# Install dependencies
COPY package.json . COPY package.json .
RUN bun i RUN bun i
# COPY package.json bun.lockb ./
# RUN bun install --frozen-lockfile
# Copy source code
COPY . . COPY . .
# Expose the application port
EXPOSE 3000 EXPOSE 3000
# Start the application
CMD ["bun", "run", "start"] CMD ["bun", "run", "start"]

View File

@ -1,6 +1,6 @@
{ {
"name": "@odit/lfk-mailer", "name": "@odit/lfk-mailer",
"version": "1.1.1", "version": "1.2.0",
"private": true, "private": true,
"type": "module", "type": "module",
"scripts": { "scripts": {