Compare commits
9 Commits
1.0.5
...
af943c1e84
| Author | SHA1 | Date | |
|---|---|---|---|
|
af943c1e84
|
|||
|
50af0b3065
|
|||
|
50e691cf05
|
|||
|
e706ef1924
|
|||
|
0ad99d3f0a
|
|||
|
bb7b15351d
|
|||
|
bc73ab271b
|
|||
|
b1b1f3e0b9
|
|||
|
30c86accf6
|
79
.drone.yml
79
.drone.yml
@@ -84,46 +84,52 @@ workspace:
|
|||||||
path: /drone/auth
|
path: /drone/auth
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Build Package
|
# - name: Build Package
|
||||||
image: node:20-bullseye-slim
|
# image: node:20-bullseye-slim
|
||||||
environment:
|
# environment:
|
||||||
YARN_VERSION: 3.5.0
|
# YARN_VERSION: 3.5.0
|
||||||
commands:
|
# commands:
|
||||||
- yarn set version stable
|
# - yarn set version stable
|
||||||
- yarn install
|
# - yarn install
|
||||||
volumes:
|
# - yarn build:production
|
||||||
- name: yarnrc
|
# volumes:
|
||||||
path: /drone/auth/.yarnrc.yml
|
# - name: yarnrc
|
||||||
- name: Publish NPM
|
# path: /drone/auth/.yarnrc.yml
|
||||||
image: node:20-bullseye-slim
|
# - name: Publish NPM
|
||||||
commands:
|
# image: node:20-bullseye-slim
|
||||||
- yarn npm publish
|
# commands:
|
||||||
volumes:
|
# - yarn npm publish
|
||||||
- name: npmrc
|
# volumes:
|
||||||
path: /drone/auth/.npmrc
|
# - name: npmrc
|
||||||
- name: yarnrc
|
# path: /drone/auth/.npmrc
|
||||||
path: /drone/auth/.yarnrc.yml
|
# - name: yarnrc
|
||||||
- name: Report NPM Publish Status
|
# path: /drone/auth/.yarnrc.yml
|
||||||
image: plugins/webhook
|
# - name: Report NPM Publish Status
|
||||||
settings:
|
# image: plugins/webhook
|
||||||
urls: https://lab.mifi.dev/hooks/ccw34hdf7tgbjmzp96nptn938r
|
# settings:
|
||||||
content_type: application/json
|
# urls: https://lab.mifi.dev/hooks/ccw34hdf7tgbjmzp96nptn938r
|
||||||
template: |
|
# content_type: application/json
|
||||||
{
|
# template: |
|
||||||
"icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
|
# {
|
||||||
"text": "[{{ repo.name }} - New npm package release {{tag}} from # {{ build.number }}] Deploy {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
|
# "icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
|
||||||
"username":"DroneBot"
|
# "text": "[{{ repo.name }} - New npm package release {{tag}} from # {{ build.number }}] Deploy {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
|
||||||
}
|
# "username":"DroneBot"
|
||||||
when:
|
# }
|
||||||
status:
|
# when:
|
||||||
- success
|
# status:
|
||||||
- failure
|
# - success
|
||||||
|
# - failure
|
||||||
- name: Publish Image
|
- name: Publish Image
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
settings:
|
settings:
|
||||||
auto_tag: true
|
auto_tag: true
|
||||||
repo: git.mifi.dev/mifi/auth-service
|
repo: git.mifi.dev/mifi/auth-service
|
||||||
registry: git.mifi.dev
|
registry: git.mifi.dev
|
||||||
|
build_args:
|
||||||
|
- MONGO_ENTRY_FILE=latest
|
||||||
|
- MONGO_VERSION=latest
|
||||||
|
- NPM_TOKEN:
|
||||||
|
from_secret: reg_token
|
||||||
ssh-agent-key:
|
ssh-agent-key:
|
||||||
from_secret: reg_token
|
from_secret: reg_token
|
||||||
username: <token>
|
username: <token>
|
||||||
@@ -164,8 +170,11 @@ depends_on:
|
|||||||
- Test Pipeline
|
- Test Pipeline
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
|
branch:
|
||||||
|
- develop
|
||||||
event:
|
event:
|
||||||
- tag
|
# - tag
|
||||||
|
- push
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
|
|||||||
25
Dockerfile
25
Dockerfile
@@ -1,20 +1,23 @@
|
|||||||
ARG ENV=production
|
ARG ENV=production
|
||||||
ARG MONGO_VERSION
|
ARG MONGO_ENTRY_FILE
|
||||||
ARG PORT=9001
|
ARG MONGO_VERSION=latest
|
||||||
ARG NPM_TOKEN
|
ARG NPM_TOKEN
|
||||||
|
ARG PORT=9001
|
||||||
ARG YARN_VERSION=3.5.0
|
ARG YARN_VERSION=3.5.0
|
||||||
ARG MONGO_ENTRY_FILE=${MONGO_VERSION:-latest}
|
|
||||||
|
|
||||||
## mongo build stage
|
## mongo build stage
|
||||||
FROM mongo:${MONGO_VERSION:-latest} AS database
|
FROM mongo:${MONGO_VERSION} AS database
|
||||||
ENV NODE_ENV $ENV
|
ENV NODE_ENV=${ENV}
|
||||||
|
ARG MONGO_ENTRY_FILE=${MONGO_ENTRY_FILE:-latest}
|
||||||
|
ENV MONGO_VERSION=${MONGO_VERSION}
|
||||||
|
RUN echo ${MONGO_ENTRY_FILE} ${MONGO_VERSION} ${NODE_ENV}
|
||||||
COPY docker-entrypoint-initdb.d/mongo-init-${MONGO_ENTRY_FILE}.sh ./docker-entrypoint-initdb.d/mongo-init.sh
|
COPY docker-entrypoint-initdb.d/mongo-init-${MONGO_ENTRY_FILE}.sh ./docker-entrypoint-initdb.d/mongo-init.sh
|
||||||
|
|
||||||
## stage one, build the service
|
## stage one, build the service
|
||||||
FROM node:20-bullseye-slim AS build
|
FROM node:20-bullseye-slim AS build
|
||||||
ENV YARN_VERSION $YARN_VERSION
|
ENV YARN_VERSION=${YARN_VERSION}
|
||||||
ENV NODE_ENV development
|
ENV NODE_ENV=development
|
||||||
ENV NPM_TOKEN $NPM_TOKEN
|
ENV NPM_TOKEN=${NPM_TOKEN}
|
||||||
WORKDIR /home/node/app
|
WORKDIR /home/node/app
|
||||||
COPY .npmrc /root
|
COPY .npmrc /root
|
||||||
COPY .build.yarnrc.yml /root/.yarnrc.yml
|
COPY .build.yarnrc.yml /root/.yarnrc.yml
|
||||||
@@ -24,9 +27,9 @@ RUN yarn build:production
|
|||||||
|
|
||||||
## this is stage two , where the app actually runs
|
## this is stage two , where the app actually runs
|
||||||
FROM node:20-bullseye-slim AS containerize
|
FROM node:20-bullseye-slim AS containerize
|
||||||
ENV YARN_VERSION $YARN_VERSION
|
ENV YARN_VERSION=${YARN_VERSION}
|
||||||
ENV NODE_ENV $ENV
|
ENV NODE_ENV=${ENV}
|
||||||
ENV NPM_TOKEN $NPM_TOKEN
|
ENV NPM_TOKEN=${NPM_TOKEN}
|
||||||
WORKDIR /home/node/app
|
WORKDIR /home/node/app
|
||||||
COPY .npmrc /root
|
COPY .npmrc /root
|
||||||
COPY .build.yarnrc.yml /root/.yarnrc.yml
|
COPY .build.yarnrc.yml /root/.yarnrc.yml
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@mifi/auth-service",
|
"name": "@mifi/auth-service",
|
||||||
"version": "1.0.5",
|
"version": "1.0.11",
|
||||||
"author": "mifi (Mike Fitzpatrick)",
|
"author": "mifi (Mike Fitzpatrick)",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user