Skip to content

Commit 258174b

Browse files
committed
fix: dockerfile in root folder
1 parent e7ef73d commit 258174b

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

Dockerfile.examples

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM node:10
2+
3+
WORKDIR /app
4+
5+
COPY . /app
6+
7+
RUN rm -rf build
8+
RUN rm -rf node_modules
9+
RUN rm -f package-lock.json
10+
11+
RUN npm install --unsafe-perm
12+
13+
CMD ["node", "examples/index", "host.docker.internal:2181"]

examples/Dockerfile

-12
This file was deleted.

0 commit comments

Comments
 (0)