diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2022-01-30 16:49:47 +0000 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2022-01-30 16:49:47 +0000 |
commit | 6f3bca8d3aafe67a5b30a456ab5e80319930e1b6 (patch) | |
tree | 932e5553782752651d968acbe2c1ab06fa27cd95 | |
parent | 7d2598f626411920e438afa91119fe5a0a70d013 (diff) | |
download | boymoder.blog-6f3bca8d3aafe67a5b30a456ab5e80319930e1b6.tar.gz boymoder.blog-6f3bca8d3aafe67a5b30a456ab5e80319930e1b6.zip |
improved dockerfile
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,7 +1,9 @@ FROM ubuntu:latest MAINTAINER Eden Attenborough "eda@e.email" +ENV TZ=Europe/London +RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone RUN apt-get update -y -RUN apt-get install -y python3-pip python3-dev build-essential clang libffi-dev +RUN apt-get install -y python3-pip python3-dev build-essential clang libffi-dev libxml2-dev libxslt-dev libjpeg-dev zlib1g-dev COPY . /app WORKDIR /app RUN pip3 install -r requirements.txt |