17 lines
553 B
Docker
17 lines
553 B
Docker
# Deprecated root Dockerfile
|
|
#
|
|
# The canonical SaaS runtime images live under infra/docker/:
|
|
# - infra/docker/api.Dockerfile
|
|
# - infra/docker/worker.Dockerfile
|
|
# - infra/docker/web.Dockerfile
|
|
#
|
|
# Use infra/docker/compose.yml and infra/docker/deploy-staging.sh for deployments.
|
|
# This file intentionally fails to prevent accidental use of the old root build path.
|
|
|
|
FROM scratch
|
|
|
|
LABEL org.opencontainers.image.title="xiaoxia-saas-deprecated-root-dockerfile"
|
|
LABEL org.opencontainers.image.description="Use infra/docker/api.Dockerfile instead"
|
|
|
|
RUN false
|