mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-23 06:35:23 +01:00
Currently Docker will error and exit because `data` directory is not created. This commit adds automatic `data` directory creation to Dockerfile so that the following docker command will not error. ``` docker run --detach --publish 5000:5000 --name lnbits-legend --volume ${PWD}/.env:/app/.env --volume ${PWD}/data/:/app/data lnbits-legend ```
24 lines
518 B
Docker
24 lines
518 B
Docker
FROM python:3.9-slim
|
|
|
|
RUN apt-get clean
|
|
RUN apt-get update
|
|
RUN apt-get install -y curl pkg-config build-essential
|
|
RUN curl -sSL https://install.python-poetry.org | python3 -
|
|
|
|
ENV PATH="/root/.local/bin:$PATH"
|
|
|
|
WORKDIR /app
|
|
RUN mkdir -p /app/lnbits/data
|
|
|
|
COPY . .
|
|
|
|
RUN poetry config virtualenvs.create false
|
|
RUN poetry install --no-dev --no-root
|
|
RUN poetry run python build.py
|
|
|
|
ENV LNBITS_PORT="5000"
|
|
ENV LNBITS_HOST="0.0.0.0"
|
|
|
|
EXPOSE 5000
|
|
|
|
CMD ["sh", "-c", "poetry run lnbits --port $LNBITS_PORT --host $LNBITS_HOST"]
|