ITAvsCOVIDbot/Dockerfile

33 lines
836 B
Docker
Raw Normal View History

2021-10-26 14:22:26 +02:00
FROM python:3-alpine
2021-01-06 17:57:35 +01:00
# Set working space
WORKDIR /usr/src/app
2021-10-17 15:28:01 +02:00
# Install dependencies
2021-10-26 14:22:26 +02:00
RUN apk update \
2021-10-17 15:28:01 +02:00
# Set UTC as timezone
&& ln -snf /usr/share/zoneinfo/Europe/Rome /etc/localtime \
# Install APT packages
2021-10-26 15:04:38 +02:00
&& apk add \
2021-10-31 02:38:23 +02:00
gcc cmake build-base freetype-dev libpng-dev openblas-dev \
2021-10-26 17:41:46 +02:00
py3-numpy py3-pandas py3-matplotlib \
2021-10-26 15:04:38 +02:00
wkhtmltopdf \
2021-10-17 15:28:01 +02:00
# Remove tmp files
2021-10-26 14:22:26 +02:00
&& rm -rf /tmp/* /var/tmp/* \
2021-10-17 15:28:01 +02:00
# Add PiWheels support
&& echo "[global]\nextra-index-url=https://www.piwheels.org/simple" >> /etc/pip.conf \
# Upgrade PIP
&& python3 -m pip install --no-cache-dir --upgrade pip
# Copy and install requirements
2021-01-06 17:57:35 +01:00
COPY requirements.txt .
2021-10-26 14:22:26 +02:00
RUN python3 -m pip install --no-cache-dir -r requirements.txt
2021-01-06 17:57:35 +01:00
# Copy app
COPY . .
# Create folder
RUN mkdir out
# Start the bot
2021-10-17 15:28:01 +02:00
CMD python3 -u bot.py