tweet-collector/Dockerfile
snyk-bot 39cf0b56df
fix: Dockerfile to reduce vulnerabilities
The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-ALPINE314-UTILLINUX-1912784
2021-11-11 23:10:36 +00:00

12 lines
518 B
Docker

FROM python:3.11.0a2-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 schedule tweepy stomp.py python-json-logger nltk emoji flask && \
rm -rf /var/lib/apt/lists/*
COPY . /home/tweet-collector/.
RUN python3 /home/tweet-collector/configuration/scripts/nltk_package_downloads.py
EXPOSE 9090
CMD ["python", "/home/tweet-collector/src/main.py"]