Skip to content

Refactored repo layout to Go standard and added basics of a Dockerise… #3

Refactored repo layout to Go standard and added basics of a Dockerise…

Refactored repo layout to Go standard and added basics of a Dockerise… #3

Workflow file for this run

name: Docker
on:
push:
branches:
- '*'
paths:
- '**/Dockerfile'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)