Skip to content

Commit

Permalink
chore: add docker files and switch to bun
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Feb 27, 2024
1 parent a08cea1 commit d3befdb
Show file tree
Hide file tree
Showing 6 changed files with 82 additions and 6,612 deletions.
15 changes: 15 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
node_modules
Dockerfile*
docker-compose*
.dockerignore
.git
.gitignore
README.md
LICENSE
.vscode
Makefile
helm-charts
.env
.editorconfig
.idea
coverage*
38 changes: 38 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#
name: Build

on:
push:
branches: ['main']

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
23 changes: 23 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Base
FROM oven/bun:1 as base

# Deps
FROM base AS deps
WORKDIR /src
COPY package.json bun.lockb /src/
RUN cd /src && bun install --frozen-lockfile

# Build
FROM base AS build
WORKDIR /src
COPY --from=deps /src/node_modules node_modules
COPY . .
RUN NODE_ENV=production bun run build

# Production
FROM base AS production
COPY --from=build /src/.output /app
USER bun
EXPOSE 3000/tcp
ENV HOST=0.0.0.0
ENTRYPOINT [ "bun", "run", "/app/server/index.mjs" ]
Binary file added bun.lockb
Binary file not shown.
13 changes: 6 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
{
"name": "nuxt-app",
"name": "nuxt-chat",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"build": "nuxt build --preset bun",
"dev": "nuxt dev --no-fork",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
"postinstall": "nuxt prepare",
"preview": "nuxt preview"
},
"dependencies": {
"@nuxtjs/tailwindcss": "^6.11.4",
"nitropack": "npm:nitropack-nightly@latest",
"nuxi": "npm:nuxi-nightly@latest",
"nuxt": "npm:nuxt-nightly@latest",
"vue": "^3.4.19",
"vue-router": "^4.3.0"
},
"devDependencies": {
"@nuxtjs/tailwindcss": "^6.11.4"
}
"packageManager": "[email protected]"
}
Loading

0 comments on commit d3befdb

Please sign in to comment.