Merge pull request #982 from lnbits/fix-docker-deploy

fix docker deploy
This commit is contained in:
Arc 2022-09-20 11:33:31 +01:00 committed by GitHub
commit 79bc1e85ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
FROM python:3.9-slim
RUN apt-get clean
RUN apt-get update
RUN apt-get install -y curl
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