Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.7.4 #346

Merged
merged 6 commits into from
Oct 1, 2023
Merged

1.7.4 #346

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ node_modules
resources
.env
ngrok.exe
ngrok.secrets.yml
ngrok.secrets.yml
.sentryclirc
2 changes: 1 addition & 1 deletion .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
check-latest: true
cache: "npm"
- name: npm
run: npm install --only=dev
run: npm install --no-audit --no-fund --only=dev
- name: lint
run: npm run lint
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -103,5 +103,8 @@ dist
# TernJS port file
.tern-port

# Sentry Auth Token
.sentryclirc

notes.txt
ngrok.secrets.yml
9 changes: 4 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
FROM node:lts AS BUILD_IMAGE
FROM node:lts-alpine AS BUILD_IMAGE
WORKDIR /app
COPY ["package.json", "package-lock.json*", "./"]
RUN npm install
RUN npm install --no-fund --no-audit
COPY . .
RUN npm run build
RUN npm install --omit=dev
RUN npm run build && npm install --no-audit --no-fund --omit=dev && wget https://gobinaries.com/tj/node-prune --output-document - | /bin/sh && node-prune

FROM node:lts
FROM node:lts-alpine
WORKDIR /app
COPY --from=BUILD_IMAGE /app/package.json ./package.json
COPY --from=BUILD_IMAGE /app/dist ./dist
Expand Down
25 changes: 0 additions & 25 deletions docker-compose.yml

This file was deleted.

Binary file modified ngrok.exe
Binary file not shown.
Loading