Skip to content

Trying to fix github actions by disabling sleep and removing comments. #8

Trying to fix github actions by disabling sleep and removing comments.

Trying to fix github actions by disabling sleep and removing comments. #8

Workflow file for this run

name: Build Docker Image
on:
push:
branches: [ main, docker-compose ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: false
load: true
tags: sage-backend:latest
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Test Docker image
run: |
docker run --rm -d --name sage-backend-test -p 3001:3000 sage-backend:latest
docker logs sage-backend-test
docker stop sage-backend-test