Some experiment to try things out

This commit is contained in:
Benjamin Bach 2023-12-14 12:18:11 +01:00
parent 009c83a2e9
commit c12add7dfc
No known key found for this signature in database
GPG Key ID: 486F0D69C845416E
3 changed files with 64 additions and 0 deletions

46
.drone.yml Normal file
View File

@ -0,0 +1,46 @@
kind: pipeline
name: default
steps:
- name: build_stable
image: node:20-alpine
commands:
- git clone https://github.com/cheeaun/phanpy.git
- cd phanpy
- git checkout 2023.12.13.19da64a
- npm install
- npm run build
- cp dist ../output
when:
branch:
- main
# stable site
- name: docker_stable
image: plugins/docker
settings:
repo: docker.data.coop/data-coop-phanpy
registry: docker.data.coop
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
tags:
- "${DRONE_BUILD_NUMBER}"
- "stable"
when:
branch:
- main
event:
exclude:
- pull_request
- name: notify
image: plugins/matrix
settings:
homeserver: https://data.coop
roomid: plKSghHbepWeUEtbHE:data.coop
username:
from_secret: matrix_username
password:
from_secret: matrix_password

3
Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM nginx:alpine
EXPOSE 80
COPY output/ /usr/share/nginx/html

15
Dockerfile_phanpy Normal file
View File

@ -0,0 +1,15 @@
FROM node:20-alpine
RUN apk add git
RUN cd / && \
git clone https://github.com/cheeaun/phanpy.git && \
cd phanpy && \
git checkout 2023.12.13.19da64a
# builds to /phanpy/dist
RUN cd /phanpy && \
npm install && \
npm run build
CMD cp /phanpy/dist /mnt