15 lines
286 B
Docker
15 lines
286 B
Docker
|
FROM python:3.11
|
||
|
|
||
|
RUN apt-get update && apt-get -y upgrade
|
||
|
RUN apt-get install -y build-essential
|
||
|
|
||
|
RUN python -m pip install --upgrade pip
|
||
|
COPY requirements.txt /tmp
|
||
|
RUN python -m pip install -r /tmp/requirements.txt
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY ./download.sh ./
|
||
|
COPY ./calculate.sh ./
|
||
|
|
||
|
CMD bash
|