Add new Dockerfile
This commit is contained in:
parent
c6437f3fbc
commit
4500078773
1 changed files with 41 additions and 4 deletions
45
Dockerfile
45
Dockerfile
|
|
@ -1,8 +1,45 @@
|
||||||
FROM python:3.7-slim
|
# Build image
|
||||||
|
FROM python:3.7-slim as builder
|
||||||
|
|
||||||
|
# Setup virtualenv
|
||||||
|
ENV VIRTUAL_ENV=/opt/venv
|
||||||
|
RUN python3 -m venv $VIRTUAL_ENV
|
||||||
|
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
||||||
|
|
||||||
|
# Install build deps
|
||||||
|
RUN apt-get update
|
||||||
|
RUN apt-get install -y --no-install-recommends build-essential
|
||||||
|
|
||||||
|
# Install runtime deps
|
||||||
|
COPY requirements.txt /tmp/requirements.txt
|
||||||
|
RUN pip install -r /tmp/requirements.txt
|
||||||
|
|
||||||
|
# Install c-lightning specific deps
|
||||||
|
RUN pip install pylightning
|
||||||
|
|
||||||
|
# Install LND specific deps
|
||||||
|
RUN pip install lndgrpc purerpc
|
||||||
|
|
||||||
|
# Production image
|
||||||
|
FROM python:3.7-slim as lnbits
|
||||||
|
|
||||||
|
# Copy over virtualenv
|
||||||
|
ENV VIRTUAL_ENV="/opt/venv"
|
||||||
|
COPY --from=builder $VIRTUAL_ENV $VIRTUAL_ENV
|
||||||
|
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
||||||
|
|
||||||
|
# Setup Quart
|
||||||
|
ENV QUART_APP="lnbits.app:create_app()"
|
||||||
|
ENV QUART_ENV="development"
|
||||||
|
ENV QUART_DEBUG="true"
|
||||||
|
|
||||||
|
# App
|
||||||
|
ENV LNBITS_BIND="0.0.0.0:5000"
|
||||||
|
|
||||||
|
# Copy in app source
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY requirements.txt /app/
|
COPY lnbits /app/lnbits
|
||||||
RUN pip install --no-cache-dir -q -r requirements.txt
|
|
||||||
COPY . /app
|
|
||||||
|
|
||||||
EXPOSE 5000
|
EXPOSE 5000
|
||||||
|
|
||||||
|
CMD quart assets && quart migrate && hypercorn -k trio --bind $LNBITS_BIND 'lnbits.app:create_app()'
|
||||||
Loading…
Add table
Add a link
Reference in a new issue