Update Dockerfile
Browse files- Dockerfile +8 -2
Dockerfile
CHANGED
|
@@ -1,4 +1,10 @@
|
|
| 1 |
FROM openlistteam/openlist:latest
|
| 2 |
USER root
|
| 3 |
-
RUN
|
| 4 |
-
curl \
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
FROM openlistteam/openlist:latest
|
| 2 |
USER root
|
| 3 |
+
RUN apk update && apk add --no-cache \
|
| 4 |
+
curl \
|
| 5 |
+
wget \
|
| 6 |
+
net-tools
|
| 7 |
+
|
| 8 |
+
VOLUME ["/app/data"]
|
| 9 |
+
EXPOSE 5244
|
| 10 |
+
ENV OPENLIT_DATA_DIR=/app/data
|