Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docker: fix missing dep in image #876

Merged
merged 2 commits into from
Feb 18, 2025
Merged
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
10 changes: 10 additions & 0 deletions .github/workflows/lint-test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,16 @@ jobs:
with:
install: true
- run: docker build .
- run: |
docker build --quiet --load . | \
xargs docker run --detach --publish 8080:8080
timeout=120
while ! curl http://localhost:8080
do
[ $timeout -eq 0 ] && exit 1
sleep 1
timeout=$((timeout - 1))
done

build-cli:
needs: [build-lib, build-lib-node, build-server]
Expand Down
6 changes: 1 addition & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,7 @@ COPY --link --from=builder /disco/package*.json /disco/
COPY --link --from=builder /disco/discojs/package.json discojs/
COPY --link --from=builder /disco/discojs-node/package.json discojs-node/
COPY --link --from=builder /disco/server/package.json server/
RUN npm \
--workspace=discojs \
--workspace=discojs-node \
--workspace=server \
--omit=dev ci
RUN npm --omit=dev ci

COPY --link --from=builder /disco/discojs/dist/ discojs/dist/
COPY --link --from=builder /disco/discojs-node/dist/ discojs-node/dist/
Expand Down
33 changes: 0 additions & 33 deletions with_server

This file was deleted.