Add docker files to build oci image for this dataset.
Browse files- .dockerignore +5 -0
- .woodpecker/README.md +1 -0
- .woodpecker/docker.yml +13 -0
- Dockerfile +2 -0
.dockerignore
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.git
|
2 |
+
.gitattributes
|
3 |
+
.woodpecker
|
4 |
+
Dockerfile
|
5 |
+
README.md
|
.woodpecker/README.md
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
This folder contains scripts for testing in our own CI/CD platform based on Woodpecker CI, located in the USTC Knowledge Computing Laboratory. These scripts may contain many hard-coded absolute URLs, so they should not be used elsewhere.
|
.woodpecker/docker.yml
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
when:
|
2 |
+
- event: push
|
3 |
+
branch: main
|
4 |
+
|
5 |
+
steps:
|
6 |
+
- name: docker
|
7 |
+
image: woodpeckerci/plugin-docker-buildx:6
|
8 |
+
settings:
|
9 |
+
repo: git.kclab.cloud/hzhangxyz/qmb-models
|
10 |
+
username: hzhangxyz
|
11 |
+
password:
|
12 |
+
from_secret: gitea_package
|
13 |
+
registry: git.kclab.cloud
|
Dockerfile
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
FROM scratch
|
2 |
+
COPY . /
|