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 2f3e3d2 commit 23fae63Copy full SHA for 23fae63
Dockerfile.template
@@ -127,6 +127,7 @@ COPY --from=build-base /usr/src/app/node_modules ./node_modules
127
#dev-cmd-live=LIVEPUSH=1 ./entry.sh
128
129
# Copy build files
130
+COPY entry.sh .
131
COPY build-utils ./build-utils
132
COPY webpack.config.js tsconfig.json tsconfig.release.json tsconfig.js.json .mochapodrc.yml ./
133
COPY typings ./typings
docker-compose.dev.yml
@@ -1,6 +1,17 @@
1
version: '2.3'
2
3
services:
4
+ balena-supervisor-sut:
5
+ build:
6
+ context: ./
7
+ dockerfile: Dockerfile.template
8
+ target: test
9
+ args:
10
+ ARCH: ${ARCH:-amd64}
11
+ environment:
12
+ LIVEPUSH: '1'
13
+ volumes:
14
+ - './src:/usr/src/app/src'
15
sut:
16
command: sleep infinity
17
volumes:
0 commit comments