Skip to content

Commit 3e0c506

Browse files
committed
Install dev dependencies in docker container
1 parent b9090c0 commit 3e0c506

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

Dockerfile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@ WORKDIR /app
55
ENV PYTHONDONTWRITEBYTECODE 1
66
ENV PYTHONUNBUFFERED 1
77

8-
RUN apt-get update && apt-get install -y netcat-openbsd && rm -rf /var/lib/apt/lists/*
8+
RUN apt-get update \
9+
&& apt-get install -y \
10+
git \
11+
netcat-openbsd \
12+
&& rm -rf /var/lib/apt/lists/*
913

1014
COPY ./requirements.txt .
11-
RUN pip install -r requirements.txt
15+
COPY ./requirements-dev.txt .
16+
RUN pip install -r requirements-dev.txt
1217

1318
COPY ./entrypoint.sh .
1419

0 commit comments

Comments
 (0)