We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3510aea commit e668d70Copy full SHA for e668d70
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