axebps commited on
Commit
c43c251
·
verified ·
1 Parent(s): 5cbd425

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -4,11 +4,11 @@ COPY . .
4
 
5
  RUN apt-get update && \
6
  apt-get install -y --no-install-recommends curl tar wget ca-certificates && \
7
- chmod +x /entrypoint.sh && \
8
- mkdir -p /home/ubuntu/.local/bin
9
 
10
  USER ubuntu
11
 
12
- ENV PATH=/home/ubuntu/.local/bin:$PATH
 
13
 
14
  CMD ["/entrypoint.sh"]
 
4
 
5
  RUN apt-get update && \
6
  apt-get install -y --no-install-recommends curl tar wget ca-certificates && \
7
+ chmod +x /entrypoint.sh
 
8
 
9
  USER ubuntu
10
 
11
+ ENV HOME=/home/ubuntu \
12
+ PATH=/home/ubuntu/.local/bin:$PATH
13
 
14
  CMD ["/entrypoint.sh"]