Skip to content

Instantly share code, notes, and snippets.

View hdhruna's full-sized avatar
🚀
Kraftwerk

Hitesh Narendra Dhruna hdhruna

🚀
Kraftwerk
  • Priceline.com Germany GmbH (flyiin Gmbh)
  • Berlin, Germany
  • 18:17 (UTC +02:00)
View GitHub Profile
@hdhruna
hdhruna / domains.txt
Last active April 27, 2023 12:10
Gmail Spam Domains
007systems.com
0108.dk
012.net.il
01auto.pl
01hosting.biz
01.rocketemail.biz
027168.com
03rwyoic.com
04iii.pl
0547y3hcrti6.com
@hdhruna
hdhruna / Dockerfile
Created August 23, 2019 12:58
AngularUI multistage Dockerfile with pure NGINX layer
FROM node:11-alpine as base
WORKDIR /app
COPY . .
RUN npm set progress=false && npm config set depth 0 && npm cache clean --force && npm config set unsafe-perm true && npm i npm@latest -g && npm install --quiet && npm audit fix && npm install -g @angular/cli@latest
FROM node:11-alpine as dev-base
WORKDIR /app
COPY --from=base /app/ ./
ARG APPLICATION_ENV="development"
@hdhruna
hdhruna / Dockerfile
Created August 22, 2019 08:57
NodeJS Multistage Dockerfile
FROM node:alpine as development-base
WORKDIR /usr/src/app
COPY . .
ARG DOMAIN="dev.example.com"
ENV DOMAIN=${DOMAIN}
RUN npm install
FROM node:alpine as production-base
WORKDIR /usr/src/app