Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion samples/keydb-operator/Dockerfile
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,7 +2,8 @@ FROM python:alpine AS build
RUN pip3 wheel --wheel-dir=/wheels \
kubernetes-asyncio \
redis \
passlib
passlib \
'bcrypt<5'

FROM python:alpine
COPY --from=build /wheels /wheels
Expand Down
1 change: 1 addition & 0 deletions samples/minio-bucket-operator/Dockerfile
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,6 +2,7 @@ FROM python:alpine AS build
RUN pip3 wheel --wheel-dir=/wheels \
kubernetes-asyncio \
passlib \
'bcrypt<5' \
pyjwt \
httpx-auth \
httpx
Expand Down
3 changes: 2 additions & 1 deletion samples/mysql-database-operator/Dockerfile
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,7 +2,8 @@ FROM python:alpine AS build
RUN pip3 wheel --wheel-dir=/wheels \
kubernetes-asyncio \
aiomysql \
passlib
passlib \
'bcrypt<5'

FROM python:alpine
COPY --from=build /wheels /wheels
Expand Down
3 changes: 2 additions & 1 deletion samples/postgres-database-operator/Dockerfile
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,7 +2,8 @@ FROM python:alpine AS build
RUN pip3 wheel --wheel-dir=/wheels \
kubernetes-asyncio \
aiopg \
passlib
passlib \
'bcrypt<5'

FROM python:alpine
COPY --from=build /wheels /wheels
Expand Down
3 changes: 2 additions & 1 deletion samples/redis-operator/Dockerfile
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,7 +2,8 @@ FROM python:alpine AS build
RUN pip3 wheel --wheel-dir=/wheels \
kubernetes-asyncio \
redis \
passlib
passlib \
'bcrypt<5'

FROM python:alpine
COPY --from=build /wheels /wheels
Expand Down
3 changes: 2 additions & 1 deletion samples/secret-claim-operator/Dockerfile
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
FROM python:alpine AS build
RUN pip3 wheel --wheel-dir=/wheels \
kubernetes-asyncio \
passlib
passlib \
'bcrypt<5'

FROM python:alpine
COPY --from=build /wheels /wheels
Expand Down
1 change: 1 addition & 0 deletions samples/wildduck-operator/Dockerfile
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,6 +2,7 @@ FROM python:alpine AS build
RUN pip3 wheel --wheel-dir=/wheels \
kubernetes-asyncio \
passlib \
'bcrypt<5' \
httpx-auth \
httpx
FROM python:alpine
Expand Down