This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Reduce image sizes for docker images * bump version
- Loading branch information
Showing
4 changed files
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.2.0 | ||
0.2.1 |