48a57513f4
* create new Dockerfile using poetry * dont use unsure docker hub image * add example env variable to docker command * remove copy of lnbits, and order of commands * add build.py for static files * add compiled resources to docker ignore, so we don't accidently add it to image * use generic python * CMD with arguments Co-authored-by: dni <dni.khr@gmail.com>
13 lines
379 B
Docker
13 lines
379 B
Docker
FROM python:3.9-slim
|
|
RUN apt-get update
|
|
RUN apt-get install -y curl
|
|
RUN curl -sSL https://install.python-poetry.org | python3 -
|
|
ENV PATH="/root/.local/bin:$PATH"
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN poetry config virtualenvs.create false
|
|
RUN poetry install --no-dev --no-root
|
|
RUN poetry run python build.py
|
|
EXPOSE 5000
|
|
CMD ["poetry", "run", "lnbits", "--port", "5000", "--host", "0.0.0.0"]
|