Skip to content

Commit d7e3ad6

Browse files
feat: Add curl to image (#3)
* Add curl to the image given frequent use
1 parent 127bcbc commit d7e3ad6

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,13 @@ ENV PATH="/opt/condaenv/bin:$PATH"
3333
ENV LC_ALL=C.UTF-8
3434
ENV LANG=C.UTF-8
3535

36+
RUN apt-get -qq -y update && \
37+
apt-get -qq -y --no-install-recommends install \
38+
curl && \
39+
apt-get -y autoclean && \
40+
apt-get -y autoremove && \
41+
rm -rf /var/lib/apt-get/lists/*
42+
3643
WORKDIR /home/data
3744
ENV HOME /home
3845

0 commit comments

Comments
 (0)