Skip to content

Commit 261eb68

Browse files
Merge pull request #18 from PythonGermany/docker-build-workflow
Create docker-build.yml
2 parents cb10853 + 90c9c89 commit 261eb68

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/docker-build.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Docker build
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
7+
jobs:
8+
docker-build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: Build the Docker image
13+
run: docker build . --tag webserv:$(date +%s)

0 commit comments

Comments
 (0)