We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28bc174 commit eda084eCopy full SHA for eda084e
1 file changed
Dockerfile
@@ -10,8 +10,11 @@ RUN apt-get update -qq && \
10
git \
11
ca-certificates
12
13
+WORKDIR /app
14
+COPY requirements.txt requirements.ufish.txt ./
15
RUN pip install -q --upgrade pip && pip install -q --no-cache-dir -r requirements.txt -r requirements.ufish.txt
16
+COPY . ./
17
RUN pip install .
-RUN apt-get remove -y build-essential git && \
- apt-get autoremove -y && apt-get clean && \
18
+RUN apt-get remove -qq -y build-essential git && \
19
+ apt-get autoremove -qq -y && apt-get clean -qq && \
20
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
0 commit comments