test
parent
a00695cf8f
commit
c942c096b8
|
@ -1,11 +1,12 @@
|
||||||
FROM python:3.11-slim-bullseye AS python-builder
|
FROM python:3.11-slim-bullseye AS python-builder
|
||||||
ENV DEBIAN_FRONTEND=noninteractive
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
WORKDIR /MumbleConciergeBot
|
|
||||||
|
|
||||||
COPY . /MumbleConciergeBot
|
COPY . /MumbleConciergeBot
|
||||||
|
WORKDIR /MumbleConciergeBot
|
||||||
|
|
||||||
RUN python3 -m venv venv \
|
RUN python3 -m venv venv \
|
||||||
&& venv/bin/pip install wheel \
|
&& venv/bin/pip install wheel \
|
||||||
&& venv/bin/pip install -r requirements.txt
|
&& venv/bin/pip install -r requirements.txt
|
||||||
|
|
||||||
ENTRYPOINT ["tail", "-f", "/dev/null"]
|
ENTRYPOINT ["tail", "-f", "/dev/null"]
|
||||||
CMD venv/bin/python src/start.py
|
CMD ["venv/bin/python", "src/start.py"]
|
Loading…
Reference in New Issue