mirror of
https://github.com/nikdoof/dropbot.git
synced 2025-12-22 14:19:24 +00:00
14 lines
292 B
Docker
14 lines
292 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 dropbot requirements.txt /usr/src/app/
|
|
WORKDIR /usr/src/app
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
CMD ["python", "dropbot/cli.py", "-c", "env"]
|