Skip to content

Commit

Permalink
Create docker-image.yml
Browse files Browse the repository at this point in the history
"An application connected to the stock market where we can buy company stocks using Pi coins, an easy-to-understand app that facilitates quick transactions."
  • Loading branch information
kanza99 authored Jan 23, 2024
1 parent d420682 commit 19a5516
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Docker Image CI

on:
push:
branches: [ "development" ]
pull_request:
branches: [ "development" ]

jobs:

build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)

1 comment on commit 19a5516

@wasi4440
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.github/workflows/docker-image.yml

Please sign in to comment.