Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8c6ad45 + 6058e52 commit fe3293fCopy full SHA for fe3293f
Dockerfile
@@ -1,11 +1,12 @@
1
FROM frolvlad/alpine-python3
2
-
3
WORKDIR /app
4
-COPY . /app
+COPY *requirements* /app/
5
RUN sed -i -e 's/v3\.8/edge/g' /etc/apk/repositories \
6
&& apk upgrade --update-cache --available \
7
&& apk add --no-cache librdkafka librdkafka-dev
8
RUN apk add --no-cache alpine-sdk python3-dev
9
RUN pip install -r requirements.txt
10
RUN pip install -r test-requirements.txt
+COPY . /app
11
RUN pip install -e .
12
+
0 commit comments