Dockerfile updates

This commit is contained in:
Daniel Dayley 2023-04-10 23:51:56 -06:00
parent fd92993892
commit 7272a9fd88

View File

@ -1,11 +1,10 @@
FROM ubuntu
ENV PROJ_NAME=python-tool
# Install Python
FROM python:3.10.6 as PYTHON
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 [""]
ENTRYPOINT ["/usr/local/bin/$PROJ_NAME","-vv"]