This commit is contained in:
parent
f09544bbee
commit
80dff07d94
|
@ -3,7 +3,9 @@ pipeline:
|
||||||
secrets: [docker_username, docker_password]
|
secrets: [docker_username, docker_password]
|
||||||
image: woodpeckerci/plugin-docker-buildx
|
image: woodpeckerci/plugin-docker-buildx
|
||||||
settings:
|
settings:
|
||||||
repo: dentaku/vollmond
|
context: bot
|
||||||
|
# dockerfile: bot/Dockerfile
|
||||||
|
repo: dentaku/vollmond-bot
|
||||||
tag: latest
|
tag: latest
|
||||||
auto-tag: true
|
auto-tag: true
|
||||||
platforms: [linux/amd64, linux/arm64]
|
platforms: [linux/amd64, linux/arm64]
|
|
@ -1 +1,9 @@
|
||||||
# pip3 install Mastodon.py
|
FROM python:3
|
||||||
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
|
COPY requirements.txt ./
|
||||||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||||||
|
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
CMD [ "python", "./testbot.py" ]
|
1
bot/requirements.txt
Normal file
1
bot/requirements.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Mastodon.py
|
Loading…
Reference in a new issue