2024-10-21 08:57:15 +00:00
|
|
|
FROM --platform=$BUILDPLATFORM node:18-alpine AS builder
|
2022-07-09 13:42:56 +00:00
|
|
|
|
2023-06-08 13:01:29 +00:00
|
|
|
RUN apk add --no-cache jq bash coreutils python3 build-base
|
|
|
|
|
2022-06-28 13:55:54 +00:00
|
|
|
WORKDIR /app
|
2023-06-08 13:01:29 +00:00
|
|
|
|
2022-06-28 13:55:54 +00:00
|
|
|
COPY package.json yarn.lock /app/
|
|
|
|
COPY scripts /app/scripts
|
2018-03-01 23:14:55 +00:00
|
|
|
RUN yarn install
|
2018-04-16 19:00:56 +00:00
|
|
|
|
2023-06-08 13:01:29 +00:00
|
|
|
COPY public /app/public
|
|
|
|
COPY src /app/src
|
2023-06-12 08:41:08 +00:00
|
|
|
COPY index.html pwa-manifest.json tsconfig.json vite.config.ts /app/
|
2023-06-08 13:01:29 +00:00
|
|
|
RUN yarn build:deployment
|
2022-07-09 13:42:56 +00:00
|
|
|
|
2024-10-21 08:57:15 +00:00
|
|
|
FROM nginx:1.23.4-alpine AS production
|
2022-07-09 13:42:56 +00:00
|
|
|
|
2022-06-28 13:55:54 +00:00
|
|
|
COPY --from=builder /app/dist /usr/share/nginx/html
|
2022-07-19 23:31:28 +00:00
|
|
|
COPY docker/funkwhale.conf.template /etc/nginx/templates/default.conf.template
|
2022-06-28 13:55:54 +00:00
|
|
|
COPY docker/funkwhale_proxy.conf /etc/nginx/funkwhale_proxy.conf
|
2022-07-19 23:31:28 +00:00
|
|
|
COPY docker/entrypoint.sh /docker-entrypoint.d/99-funkwhale.sh
|
2022-07-09 13:42:56 +00:00
|
|
|
|
|
|
|
# Allow running as non-root for custom setups
|
|
|
|
RUN mkdir -p /var/log/nginx /var/cache/nginx /var/run/nginx && \
|
|
|
|
chown -R nginx:nginx /var/log/nginx /var/run/nginx /var/cache/nginx /etc/nginx && \
|
|
|
|
sed -e 's#/var/run/nginx.pid#/var/run/nginx/nginx.pid#' -i /etc/nginx/nginx.conf
|
|
|
|
|
|
|
|
ENV FUNKWHALE_API_HOST=api
|
|
|
|
ENV FUNKWHALE_API_PORT=5000
|