We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 626afc1 + d2f7467 commit a3fe620Copy full SHA for a3fe620
Images/qp-qiime2/qp-qiime2.dockerfile
@@ -15,7 +15,8 @@ RUN apt-get -y --fix-missing install \
15
python3-dev \
16
gcc \
17
build-essential \
18
- zip
+ zip \
19
+ tzdata
20
21
# install miniforge3 for "conda"
22
# see https://github.com/conda-forge/miniforge-images/blob/master/ubuntu/Dockerfile
@@ -74,6 +75,15 @@ RUN export QIITA_CONFIG_FP=/qiita/config_qiita_oidc.cfg
74
75
# let the container know it's plugin name
76
ENV PLUGIN=qp-qiime2
77
78
+# configure language
79
+ENV LC_ALL=C.UTF-8
80
+ENV LANG=C.UTF-8
81
+
82
+# configure timezone
83
+RUN ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime
84
+RUN dpkg-reconfigure -f noninteractive tzdata
85
86
87
WORKDIR /
88
89
COPY start_qp-qiime2.sh .
0 commit comments