Merge branch 'master' of https://codeberg.org/Odyssium/gothub
このコミットが含まれているのは:
コミット
d55a43361b
37
.woodpecker.yml
ノーマルファイル
37
.woodpecker.yml
ノーマルファイル
@ -0,0 +1,37 @@
|
||||
pipeline:
|
||||
build:
|
||||
when:
|
||||
event: [push, pull_request, tag]
|
||||
image: golang:1.19.3-alpine
|
||||
commands:
|
||||
- go mod download
|
||||
- go build .
|
||||
dockerize:
|
||||
when:
|
||||
branch: [main, master]
|
||||
event: [push]
|
||||
image: plugins/docker
|
||||
settings:
|
||||
registry: codeberg.org
|
||||
repo: codeberg.org/odyssium/gothub
|
||||
username:
|
||||
from_secret: user
|
||||
password:
|
||||
from_secret: passwd
|
||||
# password = key or actual password
|
||||
tags: latest
|
||||
dockerize-dev:
|
||||
when:
|
||||
event: [push]
|
||||
branch: [dev]
|
||||
image: plugins/docker
|
||||
settings:
|
||||
registry: codeberg.org
|
||||
repo: codeberg.org/odyssium/gothub
|
||||
username:
|
||||
from_secret: user
|
||||
password:
|
||||
from_secret: passwd
|
||||
# password = key or actual password
|
||||
tags: dev
|
||||
|
7
Dockerfile
ノーマルファイル
7
Dockerfile
ノーマルファイル
@ -0,0 +1,7 @@
|
||||
FROM alpine:latest
|
||||
WORKDIR /gothub
|
||||
COPY ./gothub .
|
||||
COPY ./public/ ./public/
|
||||
COPY ./views/ ./views/
|
||||
CMD ["/bin/sh", "-c", "./gothub"]
|
||||
EXPOSE 3000
|
読み込み中…
新しいイシューから参照
ユーザーをブロックする