soiz1 commited on
Commit
725576f
·
verified ·
1 Parent(s): 05c7880

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -1,7 +1,6 @@
1
  FROM node:lts-alpine AS build
2
 
3
- WORKDIR /app
4
- RUN git clone https://github.com/TeamPiped/Piped.git .
5
 
6
  RUN --mount=type=cache,target=/var/cache/apk \
7
  apk add --no-cache \
@@ -17,10 +16,11 @@ RUN --mount=type=cache,target=/root/.local/share/pnpm \
17
  FROM nginxinc/nginx-unprivileged:alpine
18
 
19
  WORKDIR /app/
 
20
  COPY . .
21
 
22
  COPY --chown=101:101 --from=build /app/dist/ /usr/share/nginx/html/
23
- COPY --chown=101:101 /nginx.conf /etc/nginx/conf.d/default.conf
24
 
25
  COPY --from=build /app/entrypoint.sh /entrypoint.sh
26
 
 
1
  FROM node:lts-alpine AS build
2
 
3
+ RUN cd / && git clone https://github.com/TeamPiped/Piped.git .
 
4
 
5
  RUN --mount=type=cache,target=/var/cache/apk \
6
  apk add --no-cache \
 
16
  FROM nginxinc/nginx-unprivileged:alpine
17
 
18
  WORKDIR /app/
19
+
20
  COPY . .
21
 
22
  COPY --chown=101:101 --from=build /app/dist/ /usr/share/nginx/html/
23
+ COPY --chown=101:101 ./nginx.conf /etc/nginx/conf.d/default.conf
24
 
25
  COPY --from=build /app/entrypoint.sh /entrypoint.sh
26