Skip to content

Commit 90c9c89

Browse files
Create docker-build.yml
1 parent cb10853 commit 90c9c89

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)