Skip to content

Instantly share code, notes, and snippets.

@alandipert
Created August 17, 2015 13:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alandipert/3d39b47ce7bc320f3a01 to your computer and use it in GitHub Desktop.
Save alandipert/3d39b47ce7bc320f3a01 to your computer and use it in GitHub Desktop.
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