Kin: personal relationships app — server (cadence/due/migrations) + Expo Android app
Some checks failed
Build & Release APK / build (push) Failing after 13s
Some checks failed
Build & Release APK / build (push) Failing after 13s
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
16
server/Dockerfile
Normal file
16
server/Dockerfile
Normal file
@@ -0,0 +1,16 @@
|
||||
FROM oven/bun:1-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Install deps first for better layer caching.
|
||||
COPY package.json ./
|
||||
RUN bun install
|
||||
|
||||
# App source
|
||||
COPY src ./src
|
||||
COPY migrations ./migrations
|
||||
COPY public ./public
|
||||
|
||||
EXPOSE 3000
|
||||
|
||||
CMD ["bun", "run", "src/index.ts"]
|
||||
Reference in New Issue
Block a user