replace-bot/dockerfile

17 lines
264 B
Plaintext
Raw Normal View History

2022-02-16 18:13:44 +03:00
FROM alpine:latest
COPY . /usr/src/bot
WORKDIR /usr/src/bot
RUN apk update \
&& apk add \
build-base \
gcc \
musl-dev \
python3-dev \
py3-pip \
postgresql-dev
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python3", "bot.py"]