docker: Don't auto mount
All checks were successful
Build Docker / Build Docker (push) Successful in 17s

This commit is contained in:
Nathan Woodburn 2023-10-01 22:51:13 +11:00
parent 47743be647
commit de5c8787ba
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -3,5 +3,4 @@ COPY requirements.txt /app/
WORKDIR /app
RUN pip install -r requirements.txt
COPY . .
VOLUME [ "/mnt" ]
CMD ["python3", "bot.py"]