Init commit
This commit is contained in:
16
dockerfile
Normal file
16
dockerfile
Normal file
@@ -0,0 +1,16 @@
|
||||
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"]
|
Reference in New Issue
Block a user