Compare commits
8 Commits
v2.2.0
...
1de48276ff
| Author | SHA1 | Date | |
|---|---|---|---|
| 1de48276ff | |||
| 20a5c7cdaa | |||
| fc0b8cfbea | |||
| 5a064a882a | |||
| b2369ba59c | |||
| e6b4191542 | |||
| 35ebb8599c | |||
| bedfc5d3d6 |
19
.drone.yml
19
.drone.yml
@@ -1,19 +0,0 @@
|
||||
kind: pipeline
|
||||
type: kubernetes
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: docker
|
||||
image: harbor.ntppool.org/ntppool/drone-kaniko:main
|
||||
pull: always
|
||||
settings:
|
||||
dockerfile: Dockerfile
|
||||
repo: library/static-web
|
||||
registry: harbor.ntppool.org
|
||||
auto_tag: true
|
||||
tags: SHA7,${DRONE_SOURCE_BRANCH}
|
||||
cache: true
|
||||
username:
|
||||
from_secret: harbor_library_username
|
||||
password:
|
||||
from_secret: harbor_library_password
|
||||
18
.woodpecker.yaml
Normal file
18
.woodpecker.yaml
Normal file
@@ -0,0 +1,18 @@
|
||||
when:
|
||||
- event: [push, pull_request, manual]
|
||||
|
||||
steps:
|
||||
- name: docker
|
||||
image: woodpeckerci/plugin-kaniko
|
||||
settings:
|
||||
dockerfile: Dockerfile
|
||||
registry: harbor.ntppool.org
|
||||
repo: library/static-web
|
||||
tags:
|
||||
- ${CI_COMMIT_SHA:0:7}
|
||||
- ${CI_COMMIT_BRANCH}
|
||||
cache: true
|
||||
username:
|
||||
from_secret: harbor_library_username
|
||||
password:
|
||||
from_secret: harbor_library_password
|
||||
@@ -1,11 +1,11 @@
|
||||
FROM harbor.ntppool.org/perlorg/base-os:3.15.0-1
|
||||
FROM harbor.ntppool.org/perlorg/base-os:3.22.2
|
||||
ENV BUILD_VERSION 1
|
||||
USER root
|
||||
WORKDIR /web
|
||||
VOLUME /git
|
||||
VOLUME /web/config
|
||||
RUN apk --no-cache upgrade
|
||||
RUN apk --no-cache add apache2 apache2-utils apache2-proxy apache2-ssl apr-util-dbd_sqlite3 sqlite
|
||||
RUN apk --no-cache add apache2 apache2-utils apache2-proxy apache2-http2 apache2-brotli apache2-ssl apr-util-dbd_sqlite3 sqlite
|
||||
#RUN mkdir /run/apache2; chown apache:apache /run/apache2
|
||||
RUN mv /etc/apache2/conf.d/proxy.conf /etc/apache2/conf.d/proxy.conf.disabled
|
||||
RUN ln -s /dev/stderr /var/log/apache2/error.log
|
||||
|
||||
Reference in New Issue
Block a user