Skip to content

Commit d9158b9

Browse files
fix docker file
1 parent 8dc92e8 commit d9158b9

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

Diff for: .dockerignore

+7
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1+
.git
2+
coverage
3+
dist
4+
docker
5+
docs
16
node_modules
7+
.dockerignore
8+
Dockerfile

Diff for: Dockerfile

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
FROM node:10.13.0
2+
# FROM node:10-alpine
23

3-
COPY . /alchemy/
4-
RUN cd /alchemy && npm install
5-
4+
RUN apt-get update -y && apt-get install libsecret-1-dev -y
65
## Add the wait script to the image
76
ADD https://github.com/ufoscout/docker-compose-wait/releases/download/2.4.0/wait /wait
87

8+
COPY . /alchemy/
9+
RUN cd /alchemy && npm install
910
RUN chmod +x /wait
1011
ENTRYPOINT [ "/entry.sh" ]

0 commit comments

Comments
 (0)