All dem environment variables

This commit is contained in:
sn0w
2018-04-08 16:15:44 +02:00
parent d5ad29eef4
commit 39f841ad57
5 changed files with 97 additions and 15 deletions

View File

@@ -2,9 +2,11 @@ FROM elixir:1.6-alpine
RUN apk add --no-cache --virtual .build alpine-sdk git
ADD ./entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
ADD ./docker-config.exs /docker-config.exs
ADD ./entrypoint.ash /
RUN chmod +x /entrypoint.ash
ENTRYPOINT ["/entrypoint.ash"]
CMD ["run"]
EXPOSE 4000