We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8dc92e8 commit d9158b9Copy full SHA for d9158b9
.dockerignore
@@ -1 +1,8 @@
1
+.git
2
+coverage
3
+dist
4
+docker
5
+docs
6
node_modules
7
+.dockerignore
8
+Dockerfile
Dockerfile
@@ -1,10 +1,11 @@
FROM node:10.13.0
+# FROM node:10-alpine
-COPY . /alchemy/
-RUN cd /alchemy && npm install
-
+RUN apt-get update -y && apt-get install libsecret-1-dev -y
## Add the wait script to the image
ADD https://github.com/ufoscout/docker-compose-wait/releases/download/2.4.0/wait /wait
+COPY . /alchemy/
9
+RUN cd /alchemy && npm install
10
RUN chmod +x /wait
11
ENTRYPOINT [ "/entry.sh" ]
0 commit comments