Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/ag-frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ COPY --from=ag-frontend-builder /ag-frontend/out/package-lock.json ./package-loc
RUN ["npm", "install"]

COPY --from=ag-frontend-builder /ag-frontend/out/full/ .
RUN ["turbo", "run", "build", "--filter=ag-frontend^..."]
ENTRYPOINT ["turbo", "run", "dev", "--filter=ag-frontend"]

FROM ag-frontend-dev AS ag-frontend-prod
Expand Down
1 change: 1 addition & 0 deletions apps/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ COPY --from=backend-builder /backend/out/package-lock.json ./package-lock.json
RUN ["npm", "install"]

COPY --from=backend-builder /backend/out/full/ .
RUN ["turbo", "run", "build", "--filter=backend^..."]
ENTRYPOINT ["turbo", "run", "dev", "--filter=backend"]

FROM backend-dev AS backend-prod
Expand Down
1 change: 1 addition & 0 deletions apps/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ COPY --from=frontend-builder /frontend/out/package-lock.json ./package-lock.json
RUN ["npm", "install"]

COPY --from=frontend-builder /frontend/out/full/ .
RUN ["turbo", "run", "build", "--filter=frontend^..."]
ENTRYPOINT ["turbo", "run", "dev", "--filter=frontend"]

FROM frontend-dev AS frontend-prod
Expand Down
1 change: 1 addition & 0 deletions apps/staff-frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ COPY --from=staff-frontend-builder /staff-frontend/out/package-lock.json ./packa
RUN ["npm", "install"]

COPY --from=staff-frontend-builder /staff-frontend/out/full/ .
RUN ["turbo", "run", "build", "--filter=staff-frontend^..."]
ENTRYPOINT ["turbo", "run", "dev", "--filter=staff-frontend"]

FROM staff-frontend-dev AS staff-frontend-prod
Expand Down
Loading