diff options
Diffstat (limited to 'Dockerfile')
-rwxr-xr-x | Dockerfile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,4 +1,4 @@ -FROM ubuntu:22.04 +FROM ubuntu:jammy-20250404 MAINTAINER Eden Attenborough "eden.attenborough@outlook.com" ENV TZ=Europe/London RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone @@ -7,5 +7,6 @@ RUN apt-get install -y python3-pip python3-dev build-essential clang libffi-dev COPY . /app WORKDIR /app RUN pip3 install -r requirements.txt -ENTRYPOINT ["python3"] -CMD ["app.py", "--production"] + +ENTRYPOINT ["bash"] +CMD ["entrypoint.sh"] |