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

Commit aaab451

Browse files
committed
Merge branch 'fix-dockerfile' into 'master'
`pip install` now uses `requirements.txt` inside the `Dockerfile` See merge request ix.ai/etherscan-exporter!8
2 parents f46334d + cab2f96 commit aaab451

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ COPY src/ /app
1010

1111
RUN apk --no-cache upgrade && \
1212
apk add --no-cache python3 gcc musl-dev && \
13-
pip3 install --no-cache-dir prometheus_client pygelf requests && \
13+
pip3 install --no-cache-dir -r requirements.txt && \
1414
apk del --no-cache --purge gcc musl-dev
1515

1616
ENV LOGLEVEL=${LOGLEVEL} PORT=${PORT}

0 commit comments

Comments
 (0)