Actually we dont even need curl anymore

This commit is contained in:
Luke Robles 2017-08-16 12:58:01 -07:00
parent 5834e350db
commit 25ac0966c7
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
FROM python:3.6.2-alpine3.6
LABEL name="Dragon Bot"
RUN apk update && apk add --no-cache curl vim docker
RUN apk update && apk add --no-cache docker
RUN pip install requests discord.py docker pybooru
ADD app /app

View File

@ -1,6 +1,6 @@
FROM python:3.6.2-alpine3.6
LABEL name="Dragon Bot Test environment"
RUN apk update && apk add --no-cache curl vim docker
RUN apk update && apk add --no-cache vim docker
RUN pip install requests discord.py docker pybooru pylint
ADD app /app