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