Skip to content

Instantly share code, notes, and snippets.

View dexter-stpierre's full-sized avatar

Dexter St-Pierre dexter-stpierre

  • Q3 Contracting
  • Minneapolis, MN
View GitHub Profile
Copy this to roam/js page, including the "{{[[roam/js]]}}" node:
- {{[[roam/js]]}}
- ```javascript
/*
* Roam template PoC by @ViktorTabori
* 0.1alpha
*
* How to install it:
* - go to `roam/js` page`
@vidhill
vidhill / Dockerfile
Created July 26, 2017 22:36
node-gyp within Docker
FROM node:6.9.1-alpine
MAINTAINER vidhill
RUN apk add --no-cache add python build-base # build base includes g++ and gcc and Make
COPY service.tgz /service/
RUN cd /service && tar xvf service.tgz && rm service.tgz && cd package
RUN cd /service/package && npm install
@EnzoMartin
EnzoMartin / Dockerfile
Last active November 10, 2021 08:23
Building & using Node Alpine docker image
# Runtime image
# Following https://github.com/nodejs/docker-node/blob/master/docs/BestPractices.md
FROM node:7.7-alpine
# Add tini
RUN apk add --no-cache tini
ENTRYPOINT ["/sbin/tini", "--"]
WORKDIR /usr/src/app/