Sign in
apache
/
iotdb-client-nodejs
/
d2ffef35dcc821f4aa1cf7afb1453c397ab62db4
/
.
/
tests
/
e2e
/
Dockerfile
blob: 35f324d644c4f2a261aa9d2310e468dc4509256d [
file
]
FROM node
:
18
-
alpine
WORKDIR
/
app
# Copy everything
COPY
.
.
# Install dependencies
RUN npm install
# Build the project (this will copy thrift generated files to dist)
RUN npm run build
# Run E2E tests
CMD
[
"npm"
,
"run"
,
"test:e2e"
]