Created
August 17, 2015 13:21
-
-
Save alandipert/3d39b47ce7bc320f3a01 to your computer and use it in GitHub Desktop.
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 adzerk/boot-clj:2.2.0 | |
RUN mkdir /app /app/src /m2 | |
WORKDIR /app | |
ADD src/backend /app/src | |
COPY build.boot /app/build.boot | |
COPY boot.properties /app/boot.properties | |
ENV BOOT_LOCAL_REPO /m2 | |
RUN boot serve-proxy # download dependencies | |
EXPOSE 3000 | |
ENTRYPOINT ["/usr/bin/boot", "serve-proxy", "wait"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment