Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Commit

Permalink
now specifying python 3.6 in build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
richardboyd committed Jul 21, 2022
1 parent 0d2ba0e commit c58b60e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/setup/local-no-docker.rst
Expand Up @@ -190,7 +190,7 @@ Create the Conda Environment for ClarityNLP
From the ``ClarityNLPNative/ClarityNLP/native_setup`` folder, create a
new conda managed environment with:
::
conda create --name claritynlp python=3.6.15
conda create --name claritynlp python=3.6
conda activate claritynlp
conda config --env --add channels conda-forge
conda config --env --set channel_priority strict
Expand Down
2 changes: 1 addition & 1 deletion nlp/Dockerfile
@@ -1,4 +1,4 @@
FROM python:3.6.15
FROM python:3.6

MAINTAINER Health Data Analytics

Expand Down
3 changes: 1 addition & 2 deletions nlp/Dockerfile-conda
@@ -1,4 +1,3 @@
# FROM python:3.6.13
FROM continuumio/miniconda3

MAINTAINER Health Data Analytics
Expand All @@ -19,7 +18,7 @@ COPY conda_requirements.txt $APP_HOME
COPY conda_pip_requirements.txt $APP_HOME
COPY config.py $APP_HOME

RUN conda create --name claritynlp python=3.6.15
RUN conda create --name claritynlp python=3.6

RUN echo "conda activate claritynlp" >> ~/.bashrc
SHELL ["/bin/bash", "--login", "-c"]
Expand Down
2 changes: 1 addition & 1 deletion nlp/Dockerfile.hub
@@ -1,4 +1,4 @@
FROM python:3.6.15
FROM python:3.6

MAINTAINER Health Data Analytics

Expand Down

0 comments on commit c58b60e

Please sign in to comment.