Skip to content

Commit 0cfbf09

Browse files
authored
Merge pull request #7 from derogab/dev
v1.4.2
2 parents 4c2e37a + bbce134 commit 0cfbf09

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ WORKDIR /bot
77
# A wildcard is used to ensure both package.json AND package-lock.json are copied
88
# where available (npm@5+)
99
COPY package*.json ./
10-
RUN yarn
10+
RUN npm install --silent > /dev/null
1111

1212
# Copy app
1313
COPY . .
1414

1515
# Run command
16-
CMD [ "node", "bot.js" ]
16+
ENTRYPOINT [ "node", "bot.js" ]
17+
CMD [ "" ]

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "unisharebot",
3-
"version": "1.4.1",
3+
"version": "1.4.2",
44
"description": "unisharebot",
55
"main": "bot.js",
66
"scripts": {

0 commit comments

Comments
 (0)