tang minghao commited on
Update Dockerfile
Browse files- Dockerfile +5 -5
Dockerfile
CHANGED
|
@@ -1,11 +1,11 @@
|
|
| 1 |
FROM ubuntu:latest
|
| 2 |
LABEL MAINTAINER="xx"
|
| 3 |
VOLUME /opt/tinyproxy/data/
|
| 4 |
-
COPY ./tinyproxy /
|
| 5 |
-
COPY ./tinyproxy.conf /
|
| 6 |
-
COPY ./debug.html /
|
| 7 |
-
COPY ./default.html /
|
| 8 |
-
COPY ./stats.html /
|
| 9 |
COPY ./entrypoint.sh /entrypoint.sh
|
| 10 |
|
| 11 |
RUN chmod +x /entrypoint.sh
|
|
|
|
| 1 |
FROM ubuntu:latest
|
| 2 |
LABEL MAINTAINER="xx"
|
| 3 |
VOLUME /opt/tinyproxy/data/
|
| 4 |
+
COPY ./tinyproxy /opt/tinyproxy/tinyproxy
|
| 5 |
+
COPY ./tinyproxy.conf /opt/tinyproxy/tinyproxy.conf
|
| 6 |
+
COPY ./debug.html /opt/tinyproxy/data/debug.html
|
| 7 |
+
COPY ./default.html /opt/tinyproxy/data/default.html
|
| 8 |
+
COPY ./stats.html /opt/tinyproxy/data/stats.html
|
| 9 |
COPY ./entrypoint.sh /entrypoint.sh
|
| 10 |
|
| 11 |
RUN chmod +x /entrypoint.sh
|