build ghost
continuous-integration/drone/push Build was killed
Details
continuous-integration/drone/push Build was killed
Details
This commit is contained in:
parent
08d601bd44
commit
0333797de7
|
@ -39,6 +39,7 @@ def drone(
|
|||
build("ngrok-gitea"),
|
||||
build("letsencrypt-nginx"),
|
||||
build("drone-starlark"),
|
||||
build("ghost"),
|
||||
buildDockerFolder(
|
||||
"Dockerfile.git",
|
||||
"$${LOCAL_DOCKER_REGISTRY}letsencrypt-nginx",
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
FROM ghost
|
||||
COPY config.production.json /var/lib/ghost/
|
||||
COPY run.sh /
|
||||
USER root
|
||||
RUN apk update
|
||||
RUN apk add gettext # enables envsubst
|
||||
CMD ["sh" "run.sh"]
|
|
@ -0,0 +1 @@
|
|||
node "current/index.js"
|
Reference in New Issue