Skip to content

Commit

Permalink
First pass at Dockerfile for Elixir
Browse files Browse the repository at this point in the history
  • Loading branch information
piisalie authored and beevee committed Jul 3, 2020
1 parent 0f1707c commit 5e71ed7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions dockerfiles/elixir/Dockerfile
@@ -0,0 +1,14 @@
FROM elixir:1.10.3-slim as Build

WORKDIR /source
COPY . .
WORKDIR /source/app/
RUN ./bin/build


FROM debian:buster-20200607-slim

ENV LANG=C.UTF-8
WORKDIR /app
COPY --from=Build /source/app/release ./
ENTRYPOINT ["./run"]

0 comments on commit 5e71ed7

Please sign in to comment.