This repository has been archived on 2020-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
robo-rat/Dockerfile

5 lines
127 B
Docker
Raw Normal View History

2018-07-07 23:25:54 +12:00
FROM arm32v6/python:3.6.4-alpine3.7
COPY . /code
WORKDIR /code
RUN pip install -Ur requirements.txt
CMD [ "python3", "bot.py" ]