Last active
October 11, 2016 13:38
-
-
Save tunix/b8e1e76ffbfd6a0f2408dea843411e1f to your computer and use it in GitHub Desktop.
Gerrit Dashboard Server 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: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