Compare commits

..

No commits in common. "7a8e484632b5ec92e8915c192ea5d67ad48d2299" and "986001442051ed06fa43d6754bd4b1ed98015d69" have entirely different histories.

3 changed files with 17 additions and 4 deletions

View File

@ -9,5 +9,4 @@ 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,7 +1,21 @@
FROM oven/bun:1.1.40-slim FROM oven/bun:1.1.36-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.2.0", "version": "1.1.1",
"private": true, "private": true,
"type": "module", "type": "module",
"scripts": { "scripts": {