diff options
author | Max Wittig <max.wittig@siemens.com> | 2018-12-05 14:00:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-05 14:00:42 +0100 |
commit | 728f2dd1677522a4fcca76769ed127146c034c29 (patch) | |
tree | 837b765395977616fd76065bbe91daa059bdf8ee | |
parent | f945910d54bd8817560d45eb135d18e4b52b6717 (diff) | |
parent | ad0b47667f98760d6a802a9d08b2da8f40d13e87 (diff) | |
download | gitlab-728f2dd1677522a4fcca76769ed127146c034c29.tar.gz |
Merge pull request #652 from roozbehf/fix/docker-enable-use-of-yaml
fix: enable use of YAML in the CLI
-rw-r--r-- | Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -8,6 +8,7 @@ FROM python:3.7-alpine WORKDIR /opt/python-gitlab COPY --from=build /opt/python-gitlab/dist dist/ +RUN pip install PyYaml RUN pip install $(find dist -name *.whl) && \ rm -rf dist/ COPY docker-entrypoint.sh /usr/local/bin/ |