14 lines
287 B
Docker
14 lines
287 B
Docker
FROM ghcr.io/windmill-labs/windmill-ee:latest as base
|
|
|
|
FROM dockerproxy.com/library/python:3.10-alpine3.14 as replacer
|
|
|
|
COPY --from=base /usr/src/app/windmill /windmill
|
|
|
|
COPY replace.py /
|
|
|
|
RUN python /replace.py /windmill
|
|
|
|
FROM base
|
|
|
|
COPY --from=replacer /windmill /usr/src/app/windmill
|