From 9d792e49c51775af178d4840d8536ee6bb1d59cf Mon Sep 17 00:00:00 2001 From: mrjvs Date: Mon, 12 Aug 2024 22:49:45 +0200 Subject: [PATCH] Add docker and CI --- .dockerignore | 3 ++ .github/workflows/docker.yml | 56 ++++++++++++++++++++++++++++++++++++ Dockerfile | 44 ++++++++++++++++++++++++++++ src/titles/splatoon.js | 2 +- 4 files changed, 104 insertions(+), 1 deletion(-) create mode 100644 .dockerignore create mode 100644 .github/workflows/docker.yml create mode 100644 Dockerfile diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..60f3c54 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,3 @@ +.git +config.json +node_modules diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml new file mode 100644 index 0000000..8968b7d --- /dev/null +++ b/.github/workflows/docker.yml @@ -0,0 +1,56 @@ +name: Build and Publish Docker Image + +on: + push: + pull_request: + workflow_dispatch: + +env: + REGISTRY: ghcr.io + IMAGE_NAME: ${{ github.repository }} + +jobs: + build-publish: + env: + SHOULD_PUSH_IMAGE: ${{ (github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev')) || github.event_name == 'workflow_dispatch' }} + runs-on: ubuntu-latest + + permissions: + contents: read + packages: write + + steps: + - name: Set up QEMU for Docker + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Log into the container registry + if: ${{ env.SHOULD_PUSH_IMAGE == 'true' }} + uses: docker/login-action@v3 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Extract Docker metadata + id: meta + uses: docker/metadata-action@v5 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + tags: | + type=raw,value=latest,enable=${{ github.ref == 'refs/heads/master' }} + type=raw,value=edge,enable=${{ github.ref == 'refs/heads/dev' }} + type=sha + + - name: Build and push Docker image + id: build-and-push + uses: docker/build-push-action@v6 + with: + platforms: linux/amd64,linux/arm64 + push: ${{ env.SHOULD_PUSH_IMAGE }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + cache-from: type=gha + cache-to: type=gha,mode=max \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c58b5be --- /dev/null +++ b/Dockerfile @@ -0,0 +1,44 @@ +# syntax=docker/dockerfile:1 + +ARG app_dir="/home/node/app" + + +# * Base Node.js image +FROM node:20-alpine AS base +ARG app_dir +WORKDIR ${app_dir} +RUN apk add --no-cache python3 py3-pip make gcc g++ + +# * Installing production dependencies +FROM base AS dependencies + +RUN --mount=type=bind,source=package.json,target=package.json \ + --mount=type=bind,source=package-lock.json,target=package-lock.json \ + --mount=type=cache,target=/root/.npm \ + npm ci --omit=dev + + +# * Installing development dependencies and building the application +FROM base AS build + +RUN --mount=type=bind,source=package.json,target=package.json \ + --mount=type=bind,source=package-lock.json,target=package-lock.json \ + --mount=type=cache,target=/root/.npm \ + npm ci + +COPY . . + + +# * Running the final application +FROM base AS final +ARG app_dir + +ENV NODE_ENV=production +USER node + +COPY package.json . + +COPY --from=build ${app_dir} ${app_dir} +COPY --from=dependencies ${app_dir}/node_modules ${app_dir}/node_modules + +CMD ["node", "./src/server"] diff --git a/src/titles/splatoon.js b/src/titles/splatoon.js index c23c341..921ad85 100644 --- a/src/titles/splatoon.js +++ b/src/titles/splatoon.js @@ -1,4 +1,4 @@ -const multer = require('.multer'); +const multer = require('multer'); const { joi } = require('../util'); const { SplatfestResult } = require('../models/splatfest_result');