Files
welcomecenterbot/Dockerfile

15 lines
354 B
Docker
Raw Normal View History

2024-01-06 14:25:35 +03:00
FROM python:slim
2023-09-11 23:04:53 +03:00
WORKDIR /app
2024-01-06 14:25:35 +03:00
COPY . /app
RUN apt-get update && \
2024-01-07 14:43:02 +03:00
apt-get install -y git gcc curl && \
2024-01-06 14:25:35 +03:00
curl -sSL https://install.python-poetry.org | python - && \
echo "export PATH=$PATH:/root/.local/bin" >> ~/.bashrc && \
. ~/.bashrc && \
poetry config virtualenvs.create false && \
poetry install --no-dev
CMD python main.py