7 lines
72 B
Text
7 lines
72 B
Text
|
FROM python:3.8
|
||
|
|
||
|
COPY . /app
|
||
|
RUN cd /app && pip install -e .
|
||
|
|
||
|
CMD pgcli
|