diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2021-03-15 16:34:54 +0000 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2021-03-15 16:34:54 +0000 |
commit | 49718f4228867648468b25d6c7d6b31c9053dd21 (patch) | |
tree | b02b6ad9dcd5f2166c5a612bc186541758f8b6c2 /Dockerfile | |
parent | 5e528a1484533e64815db07608dc7fb1613fa36f (diff) | |
download | boymoder.blog-49718f4228867648468b25d6c7d6b31c9053dd21.tar.gz boymoder.blog-49718f4228867648468b25d6c7d6b31c9053dd21.zip |
fixed dockerfile, added images
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,9 +1,9 @@ FROM ubuntu:latest MAINTAINER Eden Attenborough "eda@e.email" RUN apt-get update -y -RUN apt-get install -y python3-pip python-dev build-essential clang libffi libffi-dev +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"]
\ No newline at end of file +CMD ["app.py", "--production"] |