Fixed problem with PATH variable in Dockerfile.

This commit is contained in:
Geoff Taylor 2021-10-18 11:23:01 +01:00
parent 7f3071eb29
commit 6b7614dc98
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ COPY ./pyproject.toml ./poetry.lock ./
WORKDIR /app
ENV PYTHONPATH=${PYTHONPATH}:/app
ENV PATH="/app/bin:${PATH}:/app/scripts:${HOME}/.local/share/solana/install/active_release/bin"
ENV PATH="/app/bin:${PATH}:/app/scripts:/root/.local/share/solana/install/active_release/bin"
RUN pip install --upgrade pip && pip --no-cache-dir install poetry