Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -17,6 +17,7 @@ RUN --mount=type=cache,target=/root/.local/share/pnpm \
|
|
17 |
FROM nginxinc/nginx-unprivileged:alpine
|
18 |
|
19 |
WORKDIR /app/
|
|
|
20 |
|
21 |
COPY --chown=101:101 --from=build /app/dist/ /usr/share/nginx/html/
|
22 |
COPY --chown=101:101 /nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
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
|