mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
.github
.vscode
dev
src
.babelrc
.editorconfig
.eslintrc
.gitattributes
.gitignore
.prettierrc
Dockerfile
LICENSE
README.md
package-lock.json
package.json
tsconfig.json
types-build.sh
types-tsconfig.json
vue.config.js
12 lines
107 B
Docker
12 lines
107 B
Docker
FROM node:16-buster-slim
|
|
|
|
COPY . /app
|
|
|
|
WORKDIR /app
|
|
|
|
RUN npm i
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD [ "npm", "run", "serve" ]
|