Skip to content

Instantly share code, notes, and snippets.

View msreekm's full-sized avatar
💭
Next.js + docker + Kubernetes

sreekumar menon msreekm

💭
Next.js + docker + Kubernetes
  • roofstock inc
  • San Francisco
  • X @msreekm
View GitHub Profile
# ---- Base Node ----
FROM mhart/alpine-node:10 AS base
# install node
RUN apk add --no-cache nodejs-current
# set working directory
WORKDIR /root/nextApp
# copy project file
COPY package.json .
COPY tsconfig.server.json .
COPY .npmrc .
@msreekm
msreekm / material-ui-card-header.js
Last active June 10, 2021 08:21
Material UI Card component with image overlapped in card header
import React from "react";
import PropTypes from "prop-types";
import { withStyles } from "@material-ui/core/styles";
import Card from "@material-ui/core/Card";
import CardActionArea from "@material-ui/core/CardActionArea";
import CardActions from "@material-ui/core/CardActions";
import CardContent from "@material-ui/core/CardContent";
import CardMedia from "@material-ui/core/CardMedia";
import Button from "@material-ui/core/Button";
import Typography from "@material-ui/core/Typography";
@msreekm
msreekm / gist:40c9107e45d68c2d3f60
Last active February 19, 2016 01:12
sfdc-precommit-jira-validation.sh
#!/usr/bin/env bash
author- Sreekumar menon
usage - validates if all jira ticket numbers are marked as "Verififed" starting from a selected commit date, this script extract jira ticket numbers from git commit and query jira for verified status.
params -
$1 - start date of commit "2016-02-15"
$2 - jira username
$3 - jira password
$4- jira host
@msreekm
msreekm / designer.html
Last active October 27, 2015 14:54
designer
<link rel="import" href="../paper-checkbox/paper-checkbox.html">
<link rel="import" href="../core-icons/iconsets/av-icons.html">
<link rel="import" href="../paper-fab/paper-fab.html">
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
<link rel="import" href="../../salesforce/mobile-ui-elements/elements/force-sobject-collection/force-sobject-collection.html">
<link rel="import" href="../../salesforce/mobile-ui-elements/elements/force-sobject/force-sobject.html">
<link rel="import" href="../../salesforce/s1-elements/scaffold/s1AppScaffold.html">
<link rel="import" href="../../salesforce/s1-elements/scaffold/s1PageContainer.html">
<link rel="import" href="../../salesforce/s1-elements/s1StagedNavigationStageLeft.html">