images/ente/web/Dockerfile
Peter 3cd293c0c1
Some checks are pending
Image builds / build_images (renovate) (push) Waiting to run
Renovate / renovate (push) Waiting to run
Image builds / build-ente-images (cast) (push) Successful in 3m35s
Image builds / build-ente-images (photos) (push) Successful in 5m33s
chore(deps): update nginx docker tag to v1.27
2024-05-31 03:33:28 +00:00

59 lines
No EOL
1.5 KiB
Docker

# syntax=docker/dockerfile:1
FROM node:21-bookworm-slim as ente-builder
ARG ENTE_BRANCH=main
ARG ENTE_APP=photos
ENV NEXT_PUBLIC_ENTE_ENDPOINT=DOCKER_RUNTIME_REPLACE_ENDPOINT \
NEXT_PUBLIC_ENTE_ALBUMS_ENDPOINT=DOCKER_RUNTIME_REPLACE_ALBUMS_ENDPOINT
RUN apt update && apt install -y ca-certificates git git-lfs && rm -rf /var/lib/apt/lists/*
WORKDIR /app
RUN git clone --recursive --depth=1 --shallow-submodules --branch="${ENTE_BRANCH}" https://github.com/ente-io/ente.git .
WORKDIR /app/web
RUN yarn install && \
yarn build:${ENTE_APP}
FROM nginx:1.27-alpine-slim
ARG ENTE_APP=photos
COPY --from=ente-builder /app/web/apps/${ENTE_APP}/out /usr/share/nginx/html
COPY <<EOF /etc/nginx/conf.d/default.conf
server {
listen 3000 default_server;
root /usr/share/nginx/html;
location / {
try_files \$uri \$uri.html \$uri/ =404;
}
error_page 404 /404.html;
location = /404.html {
internal;
}
}
EOF
ARG ENDPOINT="http://localhost:8080"
ENV ENDPOINT "$ENDPOINT"
ARG ALBUMS_ENDPOINT="http://localhost:8082"
ENV ALBUMS_ENDPOINT "$ALBUMS_ENDPOINT"
COPY <<EOF /docker-entrypoint.d/replace_ente_endpoints.sh
echo "Replacing endpoints"
echo " Endpoint: \$ENDPOINT"
echo " Albums Endpoint: \$ALBUMS_ENDPOINT"
replace_enpoints() {
sed -i -e 's,DOCKER_RUNTIME_REPLACE_ENDPOINT,'"\$ENDPOINT"',g' \$1
sed -i -e 's,DOCKER_RUNTIME_REPLACE_ALBUMS_ENDPOINT,'"\$ALBUMS_ENDPOINT"',g' \$1
}
for jsfile in `find '/usr/share/nginx/html' -type f -name '*.js'`
do
replace_enpoints "\$jsfile"
done
EOF
RUN chmod +x /docker-entrypoint.d/replace_ente_endpoints.sh