Skip to content

Commit

Permalink
[docker]Fix the problem of missing dependencies less (#5034)
Browse files Browse the repository at this point in the history
Fixes #4957

Master Issue: #4957

### Motivation

Currently, when packaging the docker image, the dependency less is lost, resulting in the following exception being thrown when presto SQL is running
```
Cannot run program "less": error=2, No such file or directory
```

### Modifications

* Add dependency less
  • Loading branch information
tuteng authored and sijie committed Aug 25, 2019
1 parent d3f30fc commit dd5b4d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/pulsar/Dockerfile
Expand Up @@ -43,7 +43,7 @@ COPY --from=pulsar /pulsar /pulsar

# Install some utilities
RUN apt-get update \
&& apt-get install -y netcat dnsutils \
&& apt-get install -y netcat dnsutils less \
python2.7 python-setuptools \
python3-setuptools \
libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev \
Expand Down

0 comments on commit dd5b4d0

Please sign in to comment.