lenaverse-bot/Dockerfile

18 lines
281 B
Docker
Raw Permalink Normal View History

2023-11-25 00:02:55 +00:00
FROM python:3.11-slim
# env setup
WORKDIR /usr/local/src/lenaverse_bot
# install lenaverse_bot
COPY . ./
RUN set -ex; \
# remove example app
rm -rf /app; \
\
python -m pip --no-cache-dir install ./
# run as unprivileged user
USER nobody
CMD [ "lenaverse-bot" ]