3 Commits

Author SHA1 Message Date
dependabot[bot] 7de00d67a7 Bump astro from 6.1.2 to 6.4.6 in /front
Bumps [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) from 6.1.2 to 6.4.6.
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/astro@6.4.6/packages/astro)

---
updated-dependencies:
- dependency-name: astro
  dependency-version: 6.4.6
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-06-20 06:43:46 +00:00
Hadi bb778b4374 Merge pull request #5 from rangampallysonali/iknowyou 2026-05-28 08:28:59 +02:00
Sonali Rangampally 9f93a759f0 Add Dockerfile and Docker-compose.yml 2026-05-26 16:17:49 -07:00
4 changed files with 54 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
.git
.gitignore
node_modules
front/node_modules
front/dist
back/tmp
*.log
.DS_Store
+38
View File
@@ -0,0 +1,38 @@
FROM oven/bun:1-alpine AS frontend-builder
WORKDIR /app/front
COPY front/package.json front/bun.lock ./
RUN bun install --frozen-lockfile
COPY front/ ./
RUN bun run build
FROM golang:1.25-alpine AS backend-builder
WORKDIR /app/back
COPY back/go.mod back/go.sum ./
RUN go mod download
COPY back/ ./
RUN go build -o iknowyou ./cmd/server
FROM alpine:latest
WORKDIR /app
RUN apk add --no-cache ca-certificates
COPY --from=backend-builder /app/back/iknowyou .
COPY --from=frontend-builder /app/front/dist ./static
EXPOSE 8080
ENV IKY_PORT=8080
ENV IKY_FRONT_DIR=/app/static
CMD ["./iknowyou"]
+7
View File
@@ -0,0 +1,7 @@
services:
iknowyou:
build: .
container_name: iknowyou
ports:
- "8080:8080"
restart: unless-stopped
+1 -1
View File
@@ -15,7 +15,7 @@
"@lucide/svelte": "^1.7.0", "@lucide/svelte": "^1.7.0",
"@tailwindcss/vite": "^4.2.1", "@tailwindcss/vite": "^4.2.1",
"ansi_up": "^6.0.6", "ansi_up": "^6.0.6",
"astro": "6.1.2", "astro": "6.4.6",
"dompurify": "^3.3.3", "dompurify": "^3.3.3",
"js-yaml": "^4.1.1", "js-yaml": "^4.1.1",
"remark-github-blockquote-alert": "^2.1.0", "remark-github-blockquote-alert": "^2.1.0",