From 33cb70e1ae488927c061481f97b9ee723d1b01b5 Mon Sep 17 00:00:00 2001 From: ovosimpatico Date: Sun, 27 Oct 2024 21:07:36 -0300 Subject: [PATCH] Docker build and github action test --- .dockerignore | 7 +++++++ .github/workflows/docker-publish.yml | 31 ++++++++++++++++++++++++++++ Dockerfile | 23 +++++++++++++++++++++ docker-compose.yml | 19 +++++++++++++++++ 4 files changed, 80 insertions(+) create mode 100644 .dockerignore create mode 100644 .github/workflows/docker-publish.yml create mode 100644 Dockerfile create mode 100644 docker-compose.yml diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..bba490e --- /dev/null +++ b/.dockerignore @@ -0,0 +1,7 @@ +node_modules +npm-debug.log +.env +.git +.gitignore +README.md +data \ No newline at end of file diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml new file mode 100644 index 0000000..b3239a5 --- /dev/null +++ b/.github/workflows/docker-publish.yml @@ -0,0 +1,31 @@ +name: Build and Publish Docker Image + +on: + push: + # branches: + # - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + + - name: Log in to GitHub Container Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Build and push Docker image + uses: docker/build-push-action@v4 + with: + context: . + push: true + tags: ghcr.io/${{ github.repository }}:latest \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..dfdd554 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,23 @@ +# Use Node.js LTS version +FROM node:20-slim + +# Create app directory +WORKDIR /usr/src/app + +# Copy package files +COPY package*.json ./ + +# Install dependencies +RUN npm install + +# Copy app source +COPY . . + +# Create data directory for persistent files +RUN mkdir -p /usr/src/app/data + +# Expose the port +EXPOSE 8062 + +# Start the application +CMD ["node", "server.js"] \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..b5d859b --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,19 @@ +version: '3.8' + +services: + myrient-search: + build: . + ports: + - "8062:8062" + environment: + - PORT=8062 + - BIND_ADDRESS=0.0.0.0 + - FORCE_FILE_REBUILD=0 + - DEBUG=0 + - NODE_ENV=production + - MAX_JOB_QUEUE=1000 + - MAX_FETCH_JOBS=1000 + - INSTANCE_NAME=Myrient + volumes: + - ./data:/usr/src/app/data + restart: unless-stopped \ No newline at end of file