diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-09 19:53:56 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-09 19:54:02 +0200 |
commit | c9bd903259da4de69ad1844353133013d172582c (patch) | |
tree | a25d2f0b798878d1e75e891fd8d164f2f13b988f | |
parent | frontend: don't install packages twice (diff) | |
download | cgitize-c9bd903259da4de69ad1844353133013d172582c.tar.gz cgitize-c9bd903259da4de69ad1844353133013d172582c.zip |
frontend: pip -> pip3 for consistency
-rw-r--r-- | docker/frontend/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/frontend/Dockerfile b/docker/frontend/Dockerfile index e341e89..992eb78 100644 --- a/docker/frontend/Dockerfile +++ b/docker/frontend/Dockerfile @@ -17,7 +17,7 @@ RUN apk add --no-cache cmake g++ make python2 && \ ARG PYGMENTS_VERSION=~=2.0 RUN apk add --no-cache py3-pip && \ - pip install --no-cache-dir --target=/pygments "pygments$PYGMENTS_VERSION" + pip3 install --no-cache-dir --target=/pygments "pygments$PYGMENTS_VERSION" FROM base |