feat: correct deployments

This commit is contained in:
pwgen2155 2024-02-29 11:19:20 +11:00
parent f32091084f
commit 5cc6b03d0d
3 changed files with 6 additions and 3 deletions

View file

@ -28,8 +28,8 @@ server:
host: irc.l3.lv
user:
from_secret: username
password:
from_secret: password
ssh_key:
from_secret: ssh_key
steps:
- name: clone

3
.gitignore vendored
View file

@ -15,3 +15,6 @@ media
*.sqlite3
site/static/
af/dawdle.conf
map/map*.png

View file

@ -1,7 +1,7 @@
FROM python:3.11
COPY requirements.txt /data/
RUN pip install --no-cache-dir /data/requirements.txt
RUN pip install --no-cache-dir -r /data/requirements.txt
VOLUME /data