get started on route for creating links, dividing steps into components

This commit is contained in:
2021-08-19 22:35:12 -04:00
parent 1542213875
commit dfaa328af4
24 changed files with 618 additions and 36 deletions

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM elixir:1.12.2-alpine
WORKDIR /app
ADD . /app
EXPOSE 4000
ENV PORT 4000
ENV MIX_ENV dev
RUN mix local.hex --force && \
mix local.rebar --force && \
mix do deps.get, deps.compile && \
mix do compile, phx.digest
CMD ["mix", "phx.server"]