welcomecenterbot/Dockerfile

15 lines
354 B
Docker
Raw Normal View History

2024-01-06 11:25:35 +00:00
FROM python:slim
2023-09-11 20:04:53 +00:00
WORKDIR /app
2024-01-06 11:25:35 +00:00
COPY . /app
RUN apt-get update && \
2024-01-07 11:43:02 +00:00
apt-get install -y git gcc curl && \
2024-01-06 11:25:35 +00: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