2021-11-26 12:20:13 +01:00
|
|
|
FROM alpine:3.14
|
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-11-26 12:16:43 +01:00
|
|
|
RUN apk update --no-cache \
|
2021-11-26 12:11:50 +01:00
|
|
|
# Install packages
|
2021-11-26 12:16:43 +01:00
|
|
|
&& apk add --no-cache \
|
2021-11-26 12:11:50 +01:00
|
|
|
tzdata \
|
|
|
|
build-base freetype-dev libpng-dev openblas-dev \
|
|
|
|
python3 py3-pip py3-numpy py3-pandas py3-matplotlib \
|
|
|
|
wkhtmltopdf \
|
2021-10-31 02:48:30 +01:00
|
|
|
# Set UTC as timezone
|
|
|
|
&& ln -snf /usr/share/zoneinfo/Europe/Rome /etc/localtime \
|
2021-10-17 15:28:01 +02:00
|
|
|
# Remove tmp files
|
2021-11-26 12:11:50 +01:00
|
|
|
&& rm -rf /tmp/* /var/tmp/* \
|
2021-10-17 15:28:01 +02:00
|
|
|
# Upgrade PIP
|
|
|
|
&& python3 -m pip install --no-cache-dir --upgrade pip
|
|
|
|
|
2021-11-26 12:44:25 +01:00
|
|
|
# Copy PIP extra index URLs
|
|
|
|
COPY pip.conf
|
|
|
|
|
2021-11-26 12:11:50 +01:00
|
|
|
# Copy requirements
|
2021-01-06 17:57:35 +01:00
|
|
|
COPY requirements.txt .
|
2021-11-26 12:11:50 +01:00
|
|
|
|
|
|
|
# Install requirements
|
2021-11-26 12:16:43 +01:00
|
|
|
RUN apk update --no-cache \
|
2021-11-26 12:11:50 +01:00
|
|
|
# Install tmp packages
|
2021-11-26 12:16:43 +01:00
|
|
|
&& apk add --no-cache --virtual build-deps gcc python3-dev musl-dev \
|
2021-11-26 12:44:25 +01:00
|
|
|
# Add PIP extra index URLs
|
|
|
|
&& mv pip.conf /etc/pip.conf \
|
2021-11-26 12:11:50 +01:00
|
|
|
# Install PIP packages
|
|
|
|
&& python3 -m pip install --no-cache-dir -r requirements.txt \
|
|
|
|
# Delete tmp packages
|
|
|
|
&& apk del build-deps
|
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
|