mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-22 14:59:29 -07:00
fix: fix ci copy error
This commit is contained in:
parent
7cc54d9fa2
commit
bc2f2b6a86
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
|
||||
|
||||
WORKDIR /app
|
||||
COPY --from=builder /app/package.json /app/package.json
|
||||
COPY --from=builder /app/dist/* /app/dist/
|
||||
COPY --from=builder /app/content/* /app/content/
|
||||
COPY --from=builder /app/views/* /app/views/
|
||||
COPY --from=builder /app/static/* /app/static/
|
||||
COPY --from=builder /app/package.json ./package.json
|
||||
COPY --from=builder /app/dist ./dist
|
||||
COPY --from=builder /app/content ./content
|
||||
COPY --from=builder /app/views ./views
|
||||
COPY --from=builder /app/static ./static
|
||||
|
||||
EXPOSE 3000
|
||||
|
||||
|
|
Loading…
Reference in a new issue