mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-17 23:37:47 +02:00
16 lines
251 B
Docker
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/
|