sure whatever

This commit is contained in:
EDRipper 2026-01-21 15:18:39 -05:00
parent 4b5947537b
commit 8a93c3f6dd
2 changed files with 8 additions and 2 deletions

View file

@ -1,4 +1,7 @@
# =============================================================================
# BACKEND (Ruby/Puma)
# =============================================================================
FROM ruby:3.3-alpine AS backend
RUN apk add --no-cache build-base tzdata
WORKDIR /app
@ -10,7 +13,9 @@ COPY backend/ .
EXPOSE 9292
CMD ["bundle", "exec", "puma", "-p", "9292", "-e", "production"]
# frontend
# =============================================================================
# FRONTEND (SvelteKit/Node)
# =============================================================================
FROM node:22-alpine AS frontend
WORKDIR /app

View file

@ -1,7 +1,8 @@
.bundle
vendor/bundle
.env
.env.*
!.env.example
.git
*.log
.vendor