Skip to content

Commit 261e1ad

Browse files
committed
#302 Update dependencies
1 parent 7627aee commit 261e1ad

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ RUN make build
4747
# Copy binaries to /output.
4848

4949
RUN mkdir -p /output \
50-
&& cp -R ${GOPATH}/src/serve-grpc/target/* /output/
50+
&& cp -R ${GOPATH}/src/serve-grpc/target/* /output/
5151

5252
# -----------------------------------------------------------------------------
5353
# Stage: final

Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,11 @@ run: run-osarch-specific
138138
.PHONY: test
139139
test: test-osarch-specific
140140

141+
142+
.PHONY: docker-test
143+
docker-test:
144+
@docker-compose -f docker-compose.test.yaml up
145+
141146
# -----------------------------------------------------------------------------
142147
# Coverage
143148
# -----------------------------------------------------------------------------

docker-compose.test.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: '3'
2+
services:
3+
sut:
4+
build: .
5+
entrypoint: [""]
6+
command: ["/app/container-test.sh"]

rootfs/app/container-test.sh

100644100755
File mode changed.

0 commit comments

Comments
 (0)