Update docker file
Some checks failed
Build and push image / build-containers (push) Has been cancelled
Some checks failed
Build and push image / build-containers (push) Has been cancelled
This commit is contained in:
@ -12,9 +12,17 @@ RUN uv build --package sshecret
|
||||
RUN uv build --package sshecret-admin
|
||||
|
||||
|
||||
FROM node:lts-alpine AS frontend-build
|
||||
WORKDIR /app
|
||||
COPY packages/sshecret-frontend/ .
|
||||
RUN npm install
|
||||
RUN npm build
|
||||
|
||||
|
||||
FROM python:3.13-slim-bookworm
|
||||
|
||||
COPY --from=builder --chown=app:app /build/dist /opt/sshecret
|
||||
COPY --from=frontend-build --chown=app:app /app/dist /opt/sshecret-frontend
|
||||
|
||||
COPY packages/sshecret-admin /opt/sshecret-admin
|
||||
COPY docker/admin.entrypoint.sh /entrypoint.sh
|
||||
|
||||
Reference in New Issue
Block a user