Skip to content

Commit e93e5ee

Browse files
PeterYurkovichzhuje
authored andcommitted
feat: add unit test containerfile
1 parent 033f601 commit e93e5ee

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

Dockerfile.cypress

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM registry.access.redhat.com/ubi9/nodejs-18:latest
2+
3+
WORKDIR /usr/src/app
4+
5+
RUN mkdir web
6+
7+
COPY Makefile Makefile
8+
COPY web/package*.json ./web
9+
RUN make install-frontend-ci-clean
10+
11+
COPY web/ /usr/src/app/web
12+
13+
RUN make build-frontend
14+
15+
ENTRYPOINT ["make", "test-frontend"]

0 commit comments

Comments
 (0)