Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # Docker Poetry {{tag>docker poetry}} <code docker> FROM python:3.7 RUN apt-get update RUN apt-get install -y libgl1-mesa-glx RUN pip install --upgrade pip RUN pip install poetry RUN poetry config virtualenvs.create false WORKDIR /app COPY pyproject.toml ./ RUN poetry install -n COPY . . </code> open/docker-poetry.txt Last modified: 2024/10/05 06:15by 127.0.0.1