Sign in
apache
/
iotdb-client-nodejs
/
7367a87f007a717f5acaf7a0f9169e2adbfd061d
/
.
/
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"
]