Commit b069de0 1 parent aae6f3a commit b069de0 Copy full SHA for b069de0
File tree 1 file changed +10
-9
lines changed
1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change 1
1
FROM alpine:3.16
2
+
2
3
RUN apk update && \
3
- apk --no-cache add tzdata && \
4
- apk --no-cache add ca-certificates && rm -rf /var/cache/apk/*
4
+ apk --no-cache add tzdata ca-certificates && \
5
+ rm -rf /var/cache/apk/*
5
6
6
- COPY dist/venom.linux-amd64 /usr/local/venom
7
+ COPY dist/venom.linux-amd64 /usr/local/bin/venom
8
+ RUN chmod +x /usr/local/bin/venom
7
9
8
10
VOLUME /workdir/results
9
11
VOLUME /workdir/tests
10
12
WORKDIR /workdir
11
13
12
- ENTRYPOINT ["/usr/local/venom" ]
13
-
14
- ENV VENOM_OUTPUT_DIR=/workdir/results
15
- ENV VENOM_LIB_DIR=/workdir/tests/lib
16
- ENV VENOM_VERBOSE=1
14
+ ENV VENOM_OUTPUT_DIR=/workdir/results \
15
+ VENOM_LIB_DIR=/workdir/tests/lib \
16
+ VENOM_VERBOSE=1
17
17
18
- CMD [ "run" , "./tests/*.y*ml" ]
18
+ ENTRYPOINT ["/usr/local/bin/venom" ]
19
+ CMD ["run" , "./tests/*.y*ml" ]
You can’t perform that action at this time.
0 commit comments