forked from Rezel/QrcodeRedirect
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
288 B
16 lines
288 B
FROM elixir:latest
|
|
|
|
# Install system dependencies
|
|
RUN apt update && apt install -y npm
|
|
RUN mix local.hex --force
|
|
RUN mix local.rebar --force
|
|
|
|
# Install app
|
|
ENV MIX_ENV=prod
|
|
COPY . /var/iqrcode
|
|
WORKDIR /var/iqrcode
|
|
|
|
# Build & start the app
|
|
EXPOSE 80
|
|
RUN chmod +x ./build.sh
|
|
CMD ./build.sh
|