1 Star 0 Fork 0

上善若水/docker-vue-dev

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 470 Bytes
一键复制 编辑 原始数据 按行查看 历史
上善若水 提交于 2024-08-01 15:41 +08:00 . chore: docker 镜像
# 使用官方的Node.js镜像作为基础镜像
FROM node:16.17.0
RUN npm config set registry https://registry.npmmirror.com
# Create and define the node_modules's cache directory.
RUN mkdir /usr/src/cache
WORKDIR /usr/src/cache
# Install the application's dependencies into the node_modules's cache directory.
COPY package*.json ./
RUN yarn install
# Create and define the application's working directory.
RUN mkdir /usr/src/app
WORKDIR /usr/src/app
COPY . .
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ssrss_admin/docker-vue-dev.git
git@gitee.com:ssrss_admin/docker-vue-dev.git
ssrss_admin
docker-vue-dev
docker-vue-dev
main

搜索帮助