Files
rengine/Dockerfile
T
2020-05-05 23:19:31 +05:30

16 lines
251 B
Docker

FROM ubuntu:20.04
RUN mkdir /app
WORKDIR /app
RUN apt update -y && apt install -y \
build-essential \
python3.8 \
python3-dev \
python3-pip \
wget \
libpq-dev
COPY requirements.txt /app/
RUN pip3 install -r requirements.txt
COPY . /app/