Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
needs: [Building]
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- uses: akhileshns/heroku-deploy@9fd0f9faae4aa93a38d6f5e25b9128589f1371b0 # v3.12.14
- uses: akhileshns/heroku-deploy@e3eb99d45a8e2ec5dca08735e089607befa4bf28 # v3.14.15
with:
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
heroku_app_name: "radon-dev"
Expand All @@ -46,7 +46,7 @@ jobs:
needs: [Building]
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- uses: akhileshns/heroku-deploy@9fd0f9faae4aa93a38d6f5e25b9128589f1371b0 # v3.12.14
- uses: akhileshns/heroku-deploy@e3eb99d45a8e2ec5dca08735e089607befa4bf28 # v3.14.15
with:
heroku_api_key: ${{secrets.HEROKU_API_KEY2}}
heroku_app_name: "radon-dev2"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Uses Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.5
bun-version: 1.3.10
- name: Install Dependencies
run: bun install --frozen-lockfile
- name: Run Prettier
Expand All @@ -30,7 +30,7 @@ jobs:
- name: Uses Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.5
bun-version: 1.3.10
- name: Install Dependencies
run: bun install --frozen-lockfile
- name: TypeCheck
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# ================================
# Build Stage
# ================================
FROM oven/bun:1.3.5-alpine AS builder
FROM oven/bun:1.3.10-alpine AS builder

# Set working directory
WORKDIR /app
Expand All @@ -26,7 +26,7 @@ RUN bunx prisma generate
# ================================
# Development Stage (for local development)
# ================================
FROM oven/bun:1.3.5-alpine AS development
FROM oven/bun:1.3.10-alpine AS development

# Install dumb-init for proper signal handling
RUN apk add --no-cache dumb-init
Expand Down Expand Up @@ -71,7 +71,7 @@ CMD ["bun", "dev"]
# ================================
# Production Stage (FINAL - Railway will use this by default)
# ================================
FROM oven/bun:1.3.5-alpine AS production
FROM oven/bun:1.3.10-alpine AS production

# Install dumb-init for proper signal handling
RUN apk add --no-cache dumb-init
Expand Down
Loading
Loading