Skip to content

Commit

Permalink
Added vim and removed --foreground parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
gmegidish committed Mar 17, 2020
1 parent e143da7 commit 8de8e30
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
FROM node:8.6.0

RUN apt-get update && apt-get install -y vim

RUN \
mkdir /usr/src/testfairy-connect && \
cd /usr/src/testfairy-connect && \
npm install git+https://github.com/testfairy/testfairy-connect.git

WORKDIR /usr/src/testfairy-connect

ENTRYPOINT ["node", "node_modules/testfairy-connect/service.js", "--foreground", "-f", "/etc/testfairy-connect/config.json"]
ENTRYPOINT ["node", "node_modules/testfairy-connect/service.js", "-f", "/etc/testfairy-connect/config.json"]

0 comments on commit 8de8e30

Please sign in to comment.