Skip to content

Instantly share code, notes, and snippets.

View rahulbhanushali's full-sized avatar

Rahul Bhanushali rahulbhanushali

View GitHub Profile
@rahulbhanushali
rahulbhanushali / Dockerfile
Created September 17, 2017 04:20
Docker file expose example
FROM node:boron
# Create app directory
WORKDIR /home/code
# Install app dependencies
RUN npm install
EXPOSE 8080