mirror of
https://github.com/nikdoof/dropbot.git
synced 2025-12-23 06:39:25 +00:00
A dockerfile.
This commit is contained in:
13
Dockerfile
Normal file
13
Dockerfile
Normal file
@@ -0,0 +1,13 @@
|
||||
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"]
|
||||
Reference in New Issue
Block a user