ENV 정리

This commit is contained in:
2019-09-15 14:00:23 +00:00
parent af6353105b
commit 861af18fbf
3 changed files with 1 additions and 6 deletions
-2
View File
@@ -46,8 +46,6 @@ RUN { \
VOLUME /var/www/html
ENV TZ=Asia/Seoul
COPY entrypoint_hidche_app.sh /usr/local/bin/
COPY id_ecdsa.key /var/www/.ssh/id_ecdsa
COPY known_hosts /var/www/.ssh/known_hosts
+1 -1
View File
@@ -1,5 +1,5 @@
#!/bin/bash
set -uxo pipefail
set -euxo pipefail
shopt -s nullglob
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
-3
View File
@@ -1,9 +1,6 @@
FROM mariadb
#ubuntu
ENV TZ=Asia/Seoul
COPY entrypoint_hidche_db.sh /usr/local/bin/
ENTRYPOINT ["entrypoint_hidche_db.sh"]