ac49a9f668
All checks were successful
git.cronocide.net/bluebubbles-bot/pipeline/head This commit looks good
11 lines
198 B
Docker
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"]
|