Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
|
@@ -67,8 +67,9 @@ RUN apt-get update && \
|
|
| 67 |
# set timezone
|
| 68 |
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
| 69 |
|
| 70 |
-
RUN echo "nameserver 8.8.8.8" > /
|
| 71 |
-
|
|
|
|
| 72 |
# set working directory
|
| 73 |
WORKDIR /app
|
| 74 |
|
|
|
|
| 67 |
# set timezone
|
| 68 |
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
| 69 |
|
| 70 |
+
RUN echo "nameserver 8.8.8.8" > /tmp/resolv.conf && \
|
| 71 |
+
mv /tmp/resolv.conf /etc/resolv.conf
|
| 72 |
+
|
| 73 |
# set working directory
|
| 74 |
WORKDIR /app
|
| 75 |
|