-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
18 lines (15 loc) · 855 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# /$$ /$$
# |__/ | $$
# /$$$$$$ /$$ /$$$$$$ /$$$$$$ /$$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$
# |____ $$| $$ /$$__ $$ |____ $$ /$$_____/|_ $$_/ /$$__ $$ /$$__ $$
# /$$$$$$$| $$| $$ \ $$ /$$$$$$$| $$ | $$ | $$ \ $$| $$ \__/
# /$$__ $$| $$| $$ | $$ /$$__ $$| $$ | $$ /$$| $$ | $$| $$
#| $$$$$$$| $$| $$$$$$/| $$$$$$$| $$$$$$$ | $$$$/| $$$$$$/| $$
# \_______/|__/ \______/ \_______/ \_______/ \___/ \______/ |__/
#
FROM python:alpine:3.6.1-alpine
MAINTAINER [email protected]
WORKDIR /aioactor
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY aioactor /aioactor