Skip to content

Commit

Permalink
Change to python image instead
Browse files Browse the repository at this point in the history
  • Loading branch information
talavis committed Aug 16, 2022
1 parent ca8946e commit e22c37d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
FROM ubuntu:latest
FROM python:3.10.6

RUN apt-get update && apt-get upgrade -y && apt-get install -y git python3 python3-pip python-is-python3 curl
RUN apt-get update && apt-get upgrade -y && apt-get install -y git curl

WORKDIR /code

RUN git clone https://github.com/ScilifelabDataCentre/covid-portal-visualisations.git

COPY *.sh *.py requirements.txt /code/

RUN pip3 install -r requirements.txt
RUN pip install -r requirements.txt

RUN mkdir output

Expand Down

0 comments on commit e22c37d

Please sign in to comment.