Skip to content

Instantly share code, notes, and snippets.

@tunix
Last active October 11, 2016 13:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tunix/ce6ad7fc6c8c075ab20ee7877307cb23 to your computer and use it in GitHub Desktop.
Save tunix/ce6ad7fc6c8c075ab20ee7877307cb23 to your computer and use it in GitHub Desktop.
alperkan.at Dockerfile
FROM node:6.2-slim
MAINTAINER Alper Kanat <me@alperkan.at>
ADD . /srv
WORKDIR /srv
RUN apt-get update && apt-get install -qqy git
RUN npm install -g bower gulp
RUN npm install
RUN bower install --allow-root
RUN gulp clean build
ENV NODE_ENV production
EXPOSE 3000
CMD ["./app.js"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment