mirror of
https://github.com/nikdoof/dropbot.git
synced 2025-12-13 02:42:17 +00:00
15 lines
297 B
Docker
15 lines
297 B
Docker
FROM ubuntu
|
|
MAINTAINER Rob Haswell <me@robhaswell.co.uk>
|
|
|
|
RUN apt-get -qqy update
|
|
RUN apt-get -qqy upgrade
|
|
RUN apt-get -qqy install python-pip
|
|
|
|
ADD . /usr/src/app/
|
|
WORKDIR /usr/src/app
|
|
|
|
RUN python setup.py install
|
|
RUN pip install -r requirements.txt
|
|
|
|
CMD ["python", "dropbot/cli.py", "-c", "env"]
|