Yvan-W commited on
Commit
61d1694
1 Parent(s): 302e483

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -3
Dockerfile CHANGED
@@ -1,7 +1,9 @@
1
  FROM ubuntu:22.04
2
 
3
- RUN apt update && apt install -y curl
4
 
5
- RUN curl -fsSL "https://alist.nn.ci/v3.sh" | bash -s install
6
 
7
- EXPOSE 8080
 
 
 
1
  FROM ubuntu:22.04
2
 
3
+ WORKDIR /alist
4
 
5
+ COPY alist /alist
6
 
7
+ RUN ./alist server
8
+
9
+ EXPOSE 5244