Skip to content
This repository was archived by the owner on Jul 16, 2021. It is now read-only.

Commit 97882a3

Browse files
committed
Provide easy way to run dbshell.
1 parent 54d9576 commit 97882a3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
FROM python:3.8
22

3-
RUN mkdir /app/
3+
RUN apt-get update && apt-get install -y postgresql-client && rm -rf /var/lib/apt/lists/*
44

5-
WORKDIR /app/
5+
COPY requirements.txt /tmp/requirements.txt
66

7-
COPY requirements.txt requirements.txt
7+
RUN pip install -r /tmp/requirements.txt
88

9-
RUN pip install -r requirements.txt
9+
WORKDIR /app/

0 commit comments

Comments
 (0)