remove hashes from requirements.txt

This commit is contained in:
Dmitry Afanasyev 2021-10-10 11:43:08 +03:00
parent eace771033
commit dc375795ec
3 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ WORKDIR /code
RUN export PATH="/root/.local/bin:$PATH" \
&& poetry --version \
&& poetry lock \
&& poetry export -f requirements.txt --output requirements.txt
&& poetry export -f requirements.txt --without-hashes --output requirements.txt
WORKDIR /poetry

View File

@ -2,7 +2,7 @@ version: '3.7'
services:
python:
image: poetry-python:latest
image: "poetry-python:latest"
container_name: 'poetry-python'
build:
context: .