-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from NOEL-MNI/update_packages
Update packages
- Loading branch information
Showing
3 changed files
with
12 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ubuntu:18.04 as builder | ||
FROM ubuntu:20.04 as builder | ||
LABEL maintainer="Ravnoor Singh Gill <[email protected]>" | ||
|
||
RUN apt-get update && apt-get upgrade -y \ | ||
|
@@ -13,9 +13,9 @@ RUN apt-get update && apt-get upgrade -y \ | |
RUN mkdir /app | ||
WORKDIR /app | ||
|
||
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-py37_23.1.0-1-Linux-x86_64.sh \ | ||
&& /bin/bash Miniconda3-py37_23.1.0-1-Linux-x86_64.sh -b -p /opt/conda \ | ||
&& rm Miniconda3-py37_23.1.0-1-Linux-x86_64.sh | ||
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-py38_23.5.2-0-Linux-x86_64.sh \ | ||
&& /bin/bash Miniconda3-py38_23.5.2-0-Linux-x86_64.sh -b -p /opt/conda \ | ||
&& rm Miniconda3-py38_23.5.2-0-Linux-x86_64.sh | ||
|
||
ENV PATH=/opt/conda/bin:$PATH | ||
|
||
|
@@ -28,7 +28,7 @@ RUN pip install -r /app/requirements.txt | |
|
||
|
||
# production image | ||
FROM ubuntu:18.04 | ||
FROM ubuntu:20.04 | ||
|
||
ENV TZ=America/Montreal | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters