origin fixed
This commit is contained in:
commit
01bfbd5767
22 changed files with 1890 additions and 0 deletions
11
Dockerfile
Normal file
11
Dockerfile
Normal file
|
@ -0,0 +1,11 @@
|
|||
FROM node:alpine
|
||||
|
||||
# Create app directory
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
# Install app dependencies
|
||||
COPY . .
|
||||
RUN npm install
|
||||
|
||||
EXPOSE 8080
|
||||
CMD ./start.sh
|
Loading…
Add table
Add a link
Reference in a new issue