mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-10-31 22:19:00 +00:00
19 lines
498 B
Docker
19 lines
498 B
Docker
FROM python:3
|
|
ENV PYTHONUNBUFFERED 1
|
|
RUN mkdir /app
|
|
RUN mkdir /app/static
|
|
RUN mkdir /app/images
|
|
WORKDIR /app
|
|
COPY requirements.txt /app/
|
|
RUN pip install -r requirements.txt
|
|
COPY ./bookwyrm /app
|
|
COPY ./celerywyrm /app
|
|
|
|
# crontab
|
|
COPY ./db_backup.sh /app
|
|
RUN apt-get update && apt-get -y install cron
|
|
COPY db-backups-cron /etc/cron.d/db-backups-cron
|
|
RUN chmod 0644 /etc/cron.d/db-backups-cron
|
|
RUN crontab /etc/cron.d/db-backups-cron
|
|
RUN touch /var/log/cron.log
|
|
CMD cron && tail -f /var/log/cron.log
|