blob: a23b6da63ba616937a4b17dbff5e4b1df5f75af1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
FROM ubuntu:16.04
MAINTAINER Cody Hiar <codyfh@gmail.com>
# Set a term for terminal inside the container, can't clear without it
ENV TERM xterm-256color
# Update and install
RUN apt-get update && apt-get install -y \
htop \
python3-dev \
python3-pip
# # Add the project requirements
# ADD requirements.txt /opt/requirements.txt
# The code should be symlinked to this directory
WORKDIR /app
# Create the entry script
ADD entry.sh /opt/
RUN chmod 755 /opt/entry.sh
|