dockerize shell commands
This commit is contained in:
parent
01ab95ebac
commit
5f613839d5
1 changed files with 4 additions and 4 deletions
|
@ -4,10 +4,10 @@ RUN apk update && apk add bash git python3 make tzdata curl py3-pip && rm -rf /v
|
|||
#RUN python3 -m pip install requests mistune pygments toml
|
||||
|
||||
# install poetry
|
||||
export POETRY_HOME=/opt/poetry
|
||||
python3 -m venv $POETRY_HOME
|
||||
$POETRY_HOME/bin/pip install poetry==1.2.0
|
||||
$POETRY_HOME/bin/poetry --version
|
||||
ENV POETRY_HOME=/opt/poetry
|
||||
RUN python3 -m venv $POETRY_HOME
|
||||
RUN $POETRY_HOME/bin/pip install poetry==1.2.0
|
||||
RUN $POETRY_HOME/bin/poetry --version
|
||||
|
||||
COPY docker/nginx.conf /etc/nginx/nginx.conf
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue