|
4 | 4 | #
|
5 | 5 | # Author: muxator
|
6 | 6 |
|
7 |
| -FROM node:alpine as adminBuild |
| 7 | +FROM node:alpine AS adminbuild |
8 | 8 |
|
9 | 9 | WORKDIR /opt/etherpad-lite
|
10 | 10 | COPY ./ ./
|
11 | 11 | RUN cd ./admin && npm install -g [email protected] && pnpm install && pnpm run build --outDir ./dist
|
12 | 12 | RUN cd ./ui && pnpm install && pnpm run build --outDir ./dist
|
13 | 13 |
|
14 | 14 |
|
15 |
| -FROM node:alpine as build |
| 15 | +FROM node:alpine AS build |
16 | 16 | LABEL maintainer="Etherpad team, https://github.com/ether/etherpad-lite"
|
17 | 17 |
|
18 | 18 | # Set these arguments when building the image from behind a proxy
|
@@ -105,37 +105,37 @@ USER etherpad
|
105 | 105 | WORKDIR "${EP_DIR}"
|
106 | 106 |
|
107 | 107 | # etherpads version feature requires this. Only copy what is really needed
|
108 |
| -COPY --chown=etherpad:etherpad ./.git/HEAD ./.git/HEAD |
109 |
| -COPY --chown=etherpad:etherpad ./.git/refs ./.git/refs |
| 108 | +COPY --chown=etherpad:etherpad ./.git/HEA[D] ./.git/HEAD |
| 109 | +COPY --chown=etherpad:etherpad ./.git/ref[s] ./.git/refs |
110 | 110 | COPY --chown=etherpad:etherpad ${SETTINGS} ./settings.json
|
111 | 111 | COPY --chown=etherpad:etherpad ./var ./var
|
112 | 112 | COPY --chown=etherpad:etherpad ./bin ./bin
|
113 | 113 | COPY --chown=etherpad:etherpad ./pnpm-workspace.yaml ./package.json ./
|
114 | 114 |
|
115 |
| -FROM build as development |
| 115 | +FROM build AS development |
116 | 116 |
|
117 | 117 | COPY --chown=etherpad:etherpad ./src/package.json .npmrc ./src/
|
118 |
| -COPY --chown=etherpad:etherpad --from=adminBuild /opt/etherpad-lite/admin/dist ./src/templates/admin |
119 |
| -COPY --chown=etherpad:etherpad --from=adminBuild /opt/etherpad-lite/ui/dist ./src/static/oidc |
| 118 | +COPY --chown=etherpad:etherpad --from=adminbuild /opt/etherpad-lite/admin/dist ./src/templates/admin |
| 119 | +COPY --chown=etherpad:etherpad --from=adminbuild /opt/etherpad-lite/ui/dist ./src/static/oidc |
120 | 120 |
|
121 | 121 | RUN bin/installDeps.sh && \
|
122 | 122 | if [ ! -z "${ETHERPAD_PLUGINS}" ] || [ ! -z "${ETHERPAD_LOCAL_PLUGINS}" ]; then \
|
123 |
| - pnpm run install-plugins ${ETHERPAD_PLUGINS} ${ETHERPAD_LOCAL_PLUGINS:+--path ${ETHERPAD_LOCAL_PLUGINS}}; \ |
| 123 | + pnpm run plugins i ${ETHERPAD_PLUGINS} ${ETHERPAD_LOCAL_PLUGINS:+--path ${ETHERPAD_LOCAL_PLUGINS}}; \ |
124 | 124 | fi
|
125 | 125 |
|
126 | 126 |
|
127 |
| -FROM build as production |
| 127 | +FROM build AS production |
128 | 128 |
|
129 | 129 | ENV NODE_ENV=production
|
130 | 130 | ENV ETHERPAD_PRODUCTION=true
|
131 | 131 |
|
132 | 132 | COPY --chown=etherpad:etherpad ./src ./src
|
133 |
| -COPY --chown=etherpad:etherpad --from=adminBuild /opt/etherpad-lite/admin/dist ./src/templates/admin |
134 |
| -COPY --chown=etherpad:etherpad --from=adminBuild /opt/etherpad-lite/ui/dist ./src/static/oidc |
| 133 | +COPY --chown=etherpad:etherpad --from=adminbuild /opt/etherpad-lite/admin/dist ./src/templates/admin |
| 134 | +COPY --chown=etherpad:etherpad --from=adminbuild /opt/etherpad-lite/ui/dist ./src/static/oidc |
135 | 135 |
|
136 | 136 | RUN bin/installDeps.sh && rm -rf ~/.npm && rm -rf ~/.local && rm -rf ~/.cache && \
|
137 | 137 | if [ ! -z "${ETHERPAD_PLUGINS}" ] || [ ! -z "${ETHERPAD_LOCAL_PLUGINS}" ]; then \
|
138 |
| - pnpm run install-plugins ${ETHERPAD_PLUGINS} ${ETHERPAD_LOCAL_PLUGINS:+--path ${ETHERPAD_LOCAL_PLUGINS}}; \ |
| 138 | + pnpm run plugins i ${ETHERPAD_PLUGINS} ${ETHERPAD_LOCAL_PLUGINS:+--path ${ETHERPAD_LOCAL_PLUGINS}}; \ |
139 | 139 | fi
|
140 | 140 |
|
141 | 141 |
|
|
0 commit comments