Init repo

This commit is contained in:
sn0w
2018-04-07 22:29:55 +02:00
commit d5ad29eef4
9 changed files with 206 additions and 0 deletions

10
pleroma.dockerfile Normal file
View File

@@ -0,0 +1,10 @@
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"]
CMD ["run"]
EXPOSE 4000