Skip to content

Commit

Permalink
Merge pull request #130 from delphieritas/patch-11
Browse files Browse the repository at this point in the history
Bug fixing for admin dockerfile, pls merge
  • Loading branch information
NLGithubWP committed Aug 26, 2020
2 parents 579c529 + 65c8470 commit 27ac634
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dockerfiles/admin.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@

FROM ubuntu:16.04

RUN apt-get update && apt-get -y upgrade

# Install conda with pip and python 3.6
ARG CONDA_ENVIORNMENT
RUN apt-get -y install curl bzip2 \
RUN apt-get update --fix-missing && apt-get -y upgrade && apt-get install -y \
curl bzip2 \
&& curl -sSL https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -o /tmp/miniconda.sh \
&& bash /tmp/miniconda.sh -bfp /usr/local \
&& rm -rf /tmp/miniconda.sh \
Expand Down

0 comments on commit 27ac634

Please sign in to comment.