forked from Mirrors/keyoxide-web
fix: fix ci copy error
This commit is contained in:
parent
fef0e11052
commit
876959dd7c
1 changed files with 5 additions and 5 deletions
10
Dockerfile
10
Dockerfile
|
@ -11,11 +11,11 @@ RUN yarn run build
|
||||||
FROM node:16-alpine
|
FROM node:16-alpine
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY --from=builder /app/package.json ./package.json
|
COPY --from=builder /app/package.json .
|
||||||
COPY --from=builder /app/dist/ /app/dist/
|
COPY --from=builder /app/dist/ .
|
||||||
COPY --from=builder /app/content/ /app/content/
|
COPY --from=builder /app/content/ .
|
||||||
COPY --from=builder /app/views/ /app/views/
|
COPY --from=builder /app/views/ .
|
||||||
COPY --from=builder /app/static/ /app/static/
|
COPY --from=builder /app/static/ .
|
||||||
|
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue