Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion Images/qp-qiime2/qp-qiime2.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ RUN apt-get -y --fix-missing install \
python3-dev \
gcc \
build-essential \
zip
zip \
tzdata

# install miniforge3 for "conda"
# see https://github.com/conda-forge/miniforge-images/blob/master/ubuntu/Dockerfile
Expand Down Expand Up @@ -74,6 +75,15 @@ RUN export QIITA_CONFIG_FP=/qiita/config_qiita_oidc.cfg
# let the container know it's plugin name
ENV PLUGIN=qp-qiime2

# configure language
ENV LC_ALL=C.UTF-8
ENV LANG=C.UTF-8

# configure timezone
RUN ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime
RUN dpkg-reconfigure -f noninteractive tzdata


WORKDIR /

COPY start_qp-qiime2.sh .
Expand Down