feat: Add initial files
All checks were successful
Build Docker / Build Image (push) Successful in 32s

This commit is contained in:
2023-11-08 16:29:54 +11:00
parent ffd896271c
commit ddc0deccef
7 changed files with 318 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM --platform=$BUILDPLATFORM python:3.10-alpine AS builder
WORKDIR /app
COPY requirements.txt /app
RUN --mount=type=cache,target=/root/.cache/pip \
pip3 install -r requirements.txt
COPY . /app
# Add mount point for data volume
VOLUME /data
ENTRYPOINT ["python3"]
CMD ["bot.py"]
FROM builder as dev-envs