10000 Github Actions for running dockerfile · code93/trantor-bootcamp@a2a5459 · GitHub
[go: up one dir, main page]

Skip to content

Commit a2a5459

Browse files
committed
Github Actions for running dockerfile
Experimenting with github actions
1 parent ca01b6b commit a2a5459

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Build and Push to Docker
2+
on: [push, pull_request]
3+
4+
jobs:
5+
run-shell-command:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Running Docker
9+
run: |
10+
docker build -t flask-docker .
11+
docker run flask-docker:latest

0 commit comments

Comments
 (0)
0