1 Star 0 Fork 0

hzhlu/asn1-playground

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 509 Bytes
一键复制 编辑 原始数据 按行查看 历史
YaFred 提交于 2021-07-29 13:09 . use another base image
FROM timbru31/java-node:11-jdk
#
# Add our application
#
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
COPY package*.json ./
RUN npm install
# If you are building your code for production
# RUN npm ci --only=production
# Bundle app source
COPY . .
#
# Start our application
#
ENV DEBUG asn1-playground:*
# Expose Node Server port
EXPOSE 3000
CMD [ "npm", "start" ]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/hzhlu/asn1-playground.git
[email protected]:hzhlu/asn1-playground.git
hzhlu
asn1-playground
asn1-playground
master

搜索帮助