Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

Commit

Permalink
feat: repo branch protection
Browse files Browse the repository at this point in the history
  • Loading branch information
Calvin Wai authored and Calvin Wai committed Jan 25, 2022
1 parent 318aa44 commit 8f69aed
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM node:16.13.1-slim as build

WORKDIR /usr/src/app
COPY . .

RUN yarn --production

FROM gcr.io/distroless/nodejs:16

LABEL org.opencontainers.image.source=https://github.com/liatrio/org-management-facilitor

COPY --from=build /usr/src/app /usr/src/app
WORKDIR /usr/src/app

CMD ["src/app.js"]
58 changes: 58 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"homepage": "https://github.com/OneGHEOrg/org-management-facilitor#readme",
"dependencies": {
"@octokit/app": "^12.0.5",
"@octokit/rest": "^18.12.0",
"dotenv": "^14.2.0"
}
}

0 comments on commit 8f69aed

Please sign in to comment.