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/b8e1e76ffbfd6a0f2408dea843411e1f to your computer and use it in GitHub Desktop.
Save tunix/b8e1e76ffbfd6a0f2408dea843411e1f to your computer and use it in GitHub Desktop.
Gerrit Dashboard Server Dockerfile
FROM node:4.4
LABEL type="node" purpose="api" role="core" description="Gerrit Dashboard Server"
ENV NODE_ENV production
ENV SOURCE_TYPE DB
ENV GERRIT_DASHBOARD_CONFIG_PATH /opt/config
COPY dist /srv/app
WORKDIR /srv/app
EXPOSE 3000
VOLUME ["/opt/config"]
CMD ["./bin/www"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment