Update Dockerfile
Browse files- Dockerfile +3 -4
Dockerfile
CHANGED
@@ -1,13 +1,12 @@
|
|
1 |
FROM node:lts-alpine AS build
|
2 |
|
3 |
-
WORKDIR /
|
4 |
RUN git clone https://github.com/TeamPiped/Piped.git /app
|
5 |
|
6 |
RUN --mount=type=cache,target=/var/cache/apk \
|
7 |
apk add --no-cache \
|
8 |
curl
|
9 |
|
10 |
-
|
11 |
RUN corepack enable && corepack prepare pnpm@latest --activate
|
12 |
|
13 |
RUN --mount=type=cache,target=/root/.local/share/pnpm \
|
@@ -23,6 +22,6 @@ COPY --chown=101:101 --from=build /app/dist/ /usr/share/nginx/html/
|
|
23 |
|
24 |
COPY --chown=101:101 ./docker/nginx.conf /etc/nginx/conf.d/default.conf
|
25 |
|
26 |
-
COPY /
|
27 |
|
28 |
-
ENTRYPOINT [ "/entrypoint.sh" ]
|
|
|
1 |
FROM node:lts-alpine AS build
|
2 |
|
3 |
+
WORKDIR /app
|
4 |
RUN git clone https://github.com/TeamPiped/Piped.git /app
|
5 |
|
6 |
RUN --mount=type=cache,target=/var/cache/apk \
|
7 |
apk add --no-cache \
|
8 |
curl
|
9 |
|
|
|
10 |
RUN corepack enable && corepack prepare pnpm@latest --activate
|
11 |
|
12 |
RUN --mount=type=cache,target=/root/.local/share/pnpm \
|
|
|
22 |
|
23 |
COPY --chown=101:101 ./docker/nginx.conf /etc/nginx/conf.d/default.conf
|
24 |
|
25 |
+
COPY --from=build /app/entrypoint.sh /entrypoint.sh
|
26 |
|
27 |
+
ENTRYPOINT [ "/entrypoint.sh" ]
|