Last active
October 11, 2016 13:38
-
-
Save tunix/ce6ad7fc6c8c075ab20ee7877307cb23 to your computer and use it in GitHub Desktop.
alperkan.at Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM node:6.2-slim | |
MAINTAINER Alper Kanat <[email protected]> | |
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