diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2025-04-29 18:51:40 +0100 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2025-04-29 18:51:40 +0100 |
commit | 0e8ada1eff8799437c9be1bc2af10d6198fa8cad (patch) | |
tree | 65d40b0c83fc2477306d561d8b98741e8e6585c6 /Dockerfile | |
parent | 9e077a790919e2980111262fbde500a5cee828f8 (diff) | |
download | boymoder.blog-0e8ada1eff8799437c9be1bc2af10d6198fa8cad.tar.gz boymoder.blog-0e8ada1eff8799437c9be1bc2af10d6198fa8cad.zip |
Added inline HTML into blogposts, refactored a bit
Diffstat (limited to 'Dockerfile')
-rwxr-xr-x | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -FROM ubuntu:22.04 +FROM ubuntu:22.10 MAINTAINER Eden Attenborough "eden.attenborough@outlook.com" ENV TZ=Europe/London RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone @@ -8,7 +8,7 @@ COPY . /app WORKDIR /app RUN pip3 install -r requirements.txt -RUN echo "*/30 * * * * root python3 /app/cache.py > /proc/1/fd/1 2>/proc/1/fd/2" > /etc/crontab +RUN echo "*/30 * * * * root python3 /app/edaweb/cache.py > /proc/1/fd/1 2>/proc/1/fd/2" > /etc/crontab ENTRYPOINT ["bash"] CMD ["entrypoint.sh"] |