12 lines
211 B
Docker
12 lines
211 B
Docker
FROM python:3
|
|
|
|
ENV VAULT_ADDR=https://vault.k8s.psynet.su
|
|
ENV VAULT_ROLE=raider-ro
|
|
ENV VAULT_PATH=raider/data/raider
|
|
|
|
# WORKDIR /python-hvac
|
|
# COPY python-hvac .
|
|
|
|
RUN poetry install
|
|
|
|
ENTRYPOINT [ "python-hvac" ] |