diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml deleted file mode 100644 index 645208a..0000000 --- a/.github/workflows/docker.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: ci-docker - -on: - push: - branches: - - "main" - - workflow_dispatch: - -jobs: - docker: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Setup Node.js - uses: actions/setup-node@v3 - with: - node-version: 16 - cache: 'npm' - - run: npm ci - - run: npm run build - - name: Setup QEMU - uses: docker/setup-qemu-action@v2 - - name: Setup Docker Buildx - uses: docker/setup-buildx-action@v2 - - name: Login to Github Container Registry - uses: docker/login-action@v2 - with: - registry: ghcr.io - username: ${{ github.repository_owner }} - password: ${{ secrets.CR_PAT }} - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - push: true - platforms: linux/amd64,linux/arm64 - tags: ghcr.io/${{ github.repository }}:${{ github.sha }}, ghcr.io/${{ github.repository }}:latest diff --git a/banner.png b/banner.png deleted file mode 100644 index 91fe2d3..0000000 Binary files a/banner.png and /dev/null differ diff --git a/docker/default.conf.template b/docker/default.conf.template deleted file mode 100644 index e22bf4c..0000000 --- a/docker/default.conf.template +++ /dev/null @@ -1,25 +0,0 @@ -server { - listen $PORT; - - root /usr/share/nginx/html; - index index.html; - - server_tokens off; - server_name _; - - gzip on; - gzip_disable "msie6"; - - gzip_vary on; - gzip_proxied any; - gzip_comp_level 6; - gzip_buffers 16 8k; - gzip_http_version 1.1; - gzip_min_length 0; - gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript; - - location / { - try_files $uri /index.html; - } -} -