feat(ci/cd): dockerize and add traefik labels

This commit is contained in:
Pihkaal
2024-10-17 21:41:22 +02:00
parent 7ca05662e4
commit 88a50ad020
4 changed files with 70 additions and 0 deletions

3
.dockerignore Normal file
View File

@@ -0,0 +1,3 @@
node_modules
.nuxt
.output

28
.github/workflows/docker-build.yml vendored Normal file
View File

@@ -0,0 +1,28 @@
name: Build and Push Docker Image
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
run: |
docker build -t pihkaal/lilou-cat:latest .
docker push pihkaal/lilou-cat:latest

23
Dockerfile Normal file
View File

@@ -0,0 +1,23 @@
FROM node:20-slim AS base
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN corepack enable
COPY . /app
WORKDIR /app
FROM base AS prod-deps
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-lockfile
FROM base AS build
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
RUN pnpm run build
FROM base
COPY --from=build /app/.output /app/.output
EXPOSE 3000
CMD ["node", ".output/server/index.mjs"]

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
services:
lilou-cat:
image: pihkaal/lilou-cat:latest
networks:
- web
labels:
- "traefik.enable=true"
- "traefik.http.routers.lilou-cat.rule=Host(`lilou.cat`)"
- "traefik.http.routers.lilou-cat.service=lilou-cat"
- "traefik.http.services.lilou-cat.loadbalancer.server.port=3000"
- "traefik.http.routers.lilou-cat.tls=true"
- "traefik.http.routers.lilou-cat.tls.certResolver=myresolver"
networks:
web:
external: true