Skip to content

Commit

Permalink
Dockerfile追加
Browse files Browse the repository at this point in the history
  • Loading branch information
developer01 committed Apr 2, 2020
1 parent 5d02187 commit 0d9516e
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Docker/Dockerfile
@@ -0,0 +1,9 @@
FROM node:13-alpine
WORKDIR /app

RUN apk add --update --no-cache p7zip
RUN apk add --update --no-cache xdotool

RUN npm -g install nadesiko3

ENV NAKO_HOME /usr/local/lib/node_modules/nadesiko3
10 changes: 10 additions & 0 deletions Docker/Dockerfile.development
@@ -0,0 +1,10 @@
FROM node:13-alpine
WORKDIR /app

RUN apk add --update --no-cache p7zip
RUN apk add --update --no-cache xdotool
RUN apk add --update --no-cache wine

ENV NAKO_HOME /app/nadesiko3

CMD [ "tail", "-f", "/dev/null" ]
4 changes: 4 additions & 0 deletions Docker/Dockerfile.edit
@@ -0,0 +1,4 @@
FROM nadesiko3
RUN echo -e "#!/bin/sh\n\nnako3edit\n\ntail -f /dev/null" > nako3edit.sh
RUN chmod 755 nako3edit.sh
CMD [ "./nako3edit.sh" ]
2 changes: 2 additions & 0 deletions Docker/Dockerfile.server
@@ -0,0 +1,2 @@
FROM nadesiko3
CMD [ "nako3server" ]

0 comments on commit 0d9516e

Please sign in to comment.