* use Github container registry to remove dependency on dockerhub * use sops for secure encryption of secrets * use ONBUILD in docker images for rebranding * use helmfile for deploying various environments
7 lines
237 B
Docker
7 lines
237 B
Docker
ARG OCELOT_VERSION=master
|
|
|
|
FROM ghcr.io/ocelot-social-community/ocelot-social/webapp:${OCELOT_VERSION}-code AS build
|
|
|
|
FROM ghcr.io/ocelot-social-community/ocelot-social/webapp:${OCELOT_VERSION}-base AS branded
|
|
COPY --from=build /build .
|