We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 993b580 commit 234fd8eCopy full SHA for 234fd8e
.github/workflows/ci.yml
@@ -34,4 +34,5 @@ jobs:
34
run: |
35
GO_MOD=go.mod docker compose --env-file=./config/ci.env.dev up --wait --build backend db staging_db frontend
36
docker network ls
37
- docker exec frontend npm test
+ docker exec frontend curl http://backend:8080/api/filesystem/info
38
+# docker exec frontend npm test
frontend/Dockerfile
@@ -20,6 +20,7 @@ WORKDIR /usr/share/nginx/html
20
RUN rm -rf ./*
21
# Copy static assets from builder stage
22
COPY --from=builder /app/build .
23
+RUN apk --no-cache add curl
24
25
EXPOSE 80
26
0 commit comments