bluebubbles-bot/Dockerfile
Daniel Dayley ac49a9f668
All checks were successful
git.cronocide.net/bluebubbles-bot/pipeline/head This commit looks good
Dockerfile updates
2023-04-11 00:19:32 -06:00

11 lines
198 B
Docker

FROM python:3.11 as PYTHON
ENV PROJ_NAME=bluebubbles_bot
# Copy project files
ADD ./ /$PROJ_NAME
RUN pip3 install /$PROJ_NAME
# Run entrypoint
ENTRYPOINT ["/usr/local/bin/bluebubbles_bot","-vv"]