Merge pull request 'features/cicd' (#2) from features/cicd into main
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
Reviewed-on: #2
This commit is contained in:
commit
06a9accdac
3
.dockerignore
Normal file
3
.dockerignore
Normal file
@ -0,0 +1,3 @@
|
||||
.vscode
|
||||
.github
|
||||
.git
|
24
.drone.yml
Normal file
24
.drone.yml
Normal file
@ -0,0 +1,24 @@
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: buildLatestImage
|
||||
|
||||
steps:
|
||||
- name: buildLatestImage
|
||||
image: plugins/docker
|
||||
settings:
|
||||
registry: git.jamestombleson.com
|
||||
repo: jtom38/Personal-Site
|
||||
username: jtom38
|
||||
password:
|
||||
from_secret: GiteaContainerRegistry
|
||||
trigger:
|
||||
branch:
|
||||
include:
|
||||
- main
|
||||
|
||||
event:
|
||||
exclude:
|
||||
- pull_request
|
||||
|
||||
|
16
Dockerfile
Normal file
16
Dockerfile
Normal file
@ -0,0 +1,16 @@
|
||||
FROM alpine:3.18 as build
|
||||
|
||||
RUN apk add hugo
|
||||
RUN apk add go
|
||||
RUN apk add git
|
||||
COPY . /app
|
||||
WORKDIR /app
|
||||
RUN hugo
|
||||
|
||||
FROM alpine:3.18
|
||||
RUN apk add caddy
|
||||
COPY --from=build /app/public /site
|
||||
WORKDIR /site
|
||||
EXPOSE 1313
|
||||
|
||||
ENTRYPOINT [ "caddy", "file-server", "--listen", ":1313" ]
|
Loading…
Reference in New Issue
Block a user