hunkim commited on
Commit
88ae284
·
1 Parent(s): 5f8c14e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -2,7 +2,11 @@
2
  FROM docker.elastic.co/elasticsearch/elasticsearch:8.6.2
3
 
4
 
 
 
 
5
  # Install dependencies
 
6
  RUN sed -i 's http://deb.debian.org http://cdn-aws.deb.debian.org g' /etc/apt/sources.list && sed -i 's http://archive.ubuntu.com http://us-east-1.ec2.archive.ubuntu.com g' /etc/apt/sources.list && sed -i '/security/d' /etc/apt/sources.list && apt-get update && apt-get install -y python3 python3-pip
7
 
8
 
 
2
  FROM docker.elastic.co/elasticsearch/elasticsearch:8.6.2
3
 
4
 
5
+ # Set temporary directory
6
+ ENV TMPDIR /tmp
7
+
8
  # Install dependencies
9
+
10
  RUN sed -i 's http://deb.debian.org http://cdn-aws.deb.debian.org g' /etc/apt/sources.list && sed -i 's http://archive.ubuntu.com http://us-east-1.ec2.archive.ubuntu.com g' /etc/apt/sources.list && sed -i '/security/d' /etc/apt/sources.list && apt-get update && apt-get install -y python3 python3-pip
11
 
12