Remove Docker and GitHub Actions configuration for templates server

This commit is contained in:
Mauricio Siu
2025-03-09 14:09:20 -06:00
parent 3160de6825
commit 46e624c055
5 changed files with 0 additions and 191 deletions

View File

@@ -1,29 +0,0 @@
name: Build Docker image
on:
push:
branches: ["canary", "main", "feat/monitoring"]
jobs:
build-and-push-templates-image:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
push: true
tags: |
dokploy/templates:latest
platforms: linux/amd64