Skip to content

Commit

Permalink
attempting to fix prod
Browse files Browse the repository at this point in the history
  • Loading branch information
andrioid committed Dec 14, 2024
1 parent c334f29 commit d9c3edf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ RUN bun run build && bun run build:bin
FROM debian:buster-slim as server
COPY --from=build /app/app .
COPY --from=build /app/dist ./dist
COPY --from=build /app/node_modules/html-escaper ./node_modules/html-escaper
EXPOSE 3000
ENV HOST=0.0.0.0
ENV PORT=3000
Expand Down
Binary file modified bun.lockb
Binary file not shown.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"name": "andri.dk",
"version": "0.0.1",
"type": "module",
"private": true,
"scripts": {
"dev": "bunx astro dev",
"dev": "bunx --bun astro dev",
"dev:node": "bunx astro dev",
"start": "bun --bun server.mjs",
"build": "bunx astro build",
Expand All @@ -13,7 +14,8 @@
"preview": "bunx astro preview",
"deno": "deno run --allow-net --allow-read --allow-env ./dist/server/entry.mjs",
"check": "astro check",
"build:bin": "bun build server.mjs --compile --outfile ./app"
"build:bin": "bun build --compile --external html-escaper --outfile ./app server.mjs",
"bundle": "bun build --target bun --bundle --external html-escaper --outfile ./dist/weird-bun-bundle server.mjs"
},
"dependencies": {
"@astrojs/mdx": "4.0.2",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/cv/resume.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"position": "Lead Frontend Developer",
"url": "https://apacta.dk",
"startDate": "2022-06-01",
"summary": "Building and improving frontend for a SaaS business, focused on craftsmen.",
"summary": "Took on an existing SaaS solution with a small team. Since I started, we've been migrating towards a singular user-friendly solution while maintaining existing functionality. My responsibilities include programming, architecture, coordinating and maintaining quality of our product.",
"keywords": ["React", "TypeScript", "AWS", "Kubernetes", "GraphQL"]
},

Expand Down

0 comments on commit d9c3edf

Please sign in to comment.