The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE315-EXPAT-2342160 - https://snyk.io/vuln/SNYK-ALPINE315-EXPAT-2342162 - https://snyk.io/vuln/SNYK-ALPINE315-EXPAT-2342163 - https://snyk.io/vuln/SNYK-ALPINE315-EXPAT-2342164 - https://snyk.io/vuln/SNYK-ALPINE315-EXPAT-2342165
10 lines
391 B
Docker
10 lines
391 B
Docker
FROM python:3.9-alpine
|
|
MAINTAINER Andrew Sotheran <cryptosky.user@gmail.com>
|
|
RUN apk update && \
|
|
apk add py-pip libc-dev gcc
|
|
RUN python -m pip install --upgrade pip
|
|
RUN pip install utils pycryptodome && \
|
|
pip install python-dotenv coinbase flask schedule numpy stomp.py python-json-logger
|
|
COPY . /home/price-collector/.
|
|
EXPOSE 9090
|
|
CMD ["python", "/home/price-collector/src/main.py"] |