Skip to content
Snippets Groups Projects
Verified Commit 0e474dcb authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

[Docker] Remove fixed poetry version

Poetry 1.0.0 has been released :tada:
parent e2bf5eee
No related branches found
No related tags found
No related merge requests found
...@@ -12,9 +12,6 @@ ENV BISCUIT_static__root /var/lib/biscuit/static ...@@ -12,9 +12,6 @@ ENV BISCUIT_static__root /var/lib/biscuit/static
ENV BISCUIT_media__root /var/lib/biscuit/media ENV BISCUIT_media__root /var/lib/biscuit/media
ENV BISCUIT_backup__location /var/lib/biscuit/backups ENV BISCUIT_backup__location /var/lib/biscuit/backups
# FIXME Use poetry pre-release for external build
ENV POETRY_VERSION 1.0.0b3
# Install necessary Debian packages for build and runtime # Install necessary Debian packages for build and runtime
RUN apt-get -y update && \ RUN apt-get -y update && \
apt-get -y install eatmydata && \ apt-get -y install eatmydata && \
...@@ -31,7 +28,7 @@ RUN apt-get -y update && \ ...@@ -31,7 +28,7 @@ RUN apt-get -y update && \
# Install core dependnecies # Install core dependnecies
WORKDIR /usr/src/app WORKDIR /usr/src/app
COPY poetry.lock pyproject.toml ./ COPY poetry.lock pyproject.toml ./
RUN eatmydata pip install "poetry==$POETRY_VERSION"; \ RUN eatmydata pip install poetry; \
poetry export -f requirements.txt | eatmydata pip install -r /dev/stdin; \ poetry export -f requirements.txt | eatmydata pip install -r /dev/stdin; \
eatmydata pip install gunicorn eatmydata pip install gunicorn
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment