Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. FROM crystallang/crystal:latest
  2.  
  3. WORKDIR /app
  4.  
  5. COPY shard.* /app/
  6. RUN shards install
  7. COPY . /app
  8. RUN crystal build src/maestro.cr -o ./bin/maestro --release
  9.  
  10. RUN rm -rf /app/node_modules
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement