aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Pipfile4
-rw-r--r--docker/Dockerfile.base2
2 files changed, 5 insertions, 1 deletions
diff --git a/Pipfile b/Pipfile
index 1af3a353b..4adfb1b54 100644
--- a/Pipfile
+++ b/Pipfile
@@ -31,3 +31,7 @@ python_version = "3.6"
[scripts]
start = "python -m bot"
+build = "docker build -t pythondiscord/bot:latest -f docker/Dockerfile ."
+push = "docker push pythondiscord/bot:latest"
+buildbase = "docker build -t pythondiscord/bot-base:latest -f docker/Dockerfile.base ."
+pushbase = "docker push pythondiscord/bot-base:latest"
diff --git a/docker/Dockerfile.base b/docker/Dockerfile.base
index 32d017540..41b4fa46e 100644
--- a/docker/Dockerfile.base
+++ b/docker/Dockerfile.base
@@ -1,4 +1,4 @@
-FROM python:3.6-alpine
+FROM python:3.6-alpine3.7
RUN apk add --update tini
RUN apk add --update build-base