Create Dockerfile
Browse files- Dockerfile +5 -0
Dockerfile
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM ubuntu:20.04
|
2 |
+
RUN ln -snf /usr/share/zoneinfo/$CONTAINER_TIMEZONE /etc/localtime && echo $CONTAINER_TIMEZONE > /etc/timezone
|
3 |
+
RUN apt-get update -y
|
4 |
+
RUN chmod a+x run.sh
|
5 |
+
CMD ["./run.sh"]
|