Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
Docker for local mode (#859)
Browse files Browse the repository at this point in the history
* Reduce image sizes for docker images

* bump version
  • Loading branch information
mrniket authored Oct 16, 2018
1 parent 726f7dd commit 6488e91
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 3 additions & 1 deletion aimmo-game-creator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
FROM python:2
FROM python:2-alpine

MAINTAINER [email protected]

COPY . .

RUN apk add --no-cache gcc musl-dev python-dev libffi-dev openssl-dev

RUN pip install pipenv

RUN pipenv install --system --deploy
Expand Down
4 changes: 3 additions & 1 deletion aimmo-game-worker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
FROM python:2
FROM python:2-alpine

MAINTAINER [email protected]

COPY . .

RUN apk add --no-cache gcc musl-dev python-dev libffi-dev openssl-dev

RUN pip install pipenv

RUN pipenv install --system --deploy
Expand Down
4 changes: 3 additions & 1 deletion aimmo-game/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
FROM python:2
FROM python:2-alpine

MAINTAINER [email protected]

ENV WORKER_MANAGER=kubernetes

COPY . .

RUN apk add --no-cache gcc musl-dev python-dev libffi-dev openssl-dev

RUN pip install pipenv

RUN pipenv install --system --deploy
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.2.1

0 comments on commit 6488e91

Please sign in to comment.