Skip to content

Instantly share code, notes, and snippets.

@pvgomes
Last active September 19, 2017 14:48
Show Gist options
  • Save pvgomes/85bec7303661c36736fa52d7e6d8242d to your computer and use it in GitHub Desktop.
Save pvgomes/85bec7303661c36736fa52d7e6d8242d to your computer and use it in GitHub Desktop.
Dockerfile_node-nginx-alpine
FROM alpine:3.3
MAINTAINER Paulo Gomes <pv.gomes89@gmail.com>
#Update and Intalation Ubuntu Packages
RUN apk update && \
apk upgrade && \
apk add --update \
nginx \
nodejs
WORKDIR /srv/www
ADD . /srv/www
#Commands
CMD exec nginx
#Port
EXPOSE 80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment