2
2
mirror of https://github.com/m1k1o/neko.git synced 2024-07-24 14:40:50 +12:00
Files
.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
neko/Dockerfile
2022-05-14 19:25:22 +02:00

12 lines
107 B
Docker

FROM node:16-buster-slim
COPY . /app
WORKDIR /app
RUN npm i
EXPOSE 8080
CMD [ "npm", "run", "serve" ]